From cf9a49b0c190469a83944edfe5aff008a4f9b45c Mon Sep 17 00:00:00 2001 From: Drew Shark Date: Tue, 28 Jul 2026 14:26:56 -0400 Subject: [PATCH 1/4] Add the desktop-processing protocol tasks --- V3Schema | 2 +- three/MF/V3/Descriptors/ProtocolInfo.py | 23 ++ three/MF/V3/Descriptors/ScanCapture.py | 36 +++ three/MF/V3/Descriptors/ScannerList.py | 30 +++ three/MF/V3/Descriptors/ScannerStatus.py | 14 ++ three/MF/V3/Descriptors/StorageInfo.py | 23 ++ three/MF/V3/Descriptors/__init__.py | 5 + three/MF/V3/Tasks/ConnectScanner.py | 61 +++++ three/MF/V3/Tasks/DisconnectScanner.py | 54 +++++ three/MF/V3/Tasks/DiscoverScanners.py | 65 ++++++ three/MF/V3/Tasks/DownloadScannerProject.py | 59 +++++ three/MF/V3/Tasks/GetProtocolInfo.py | 63 ++++++ three/MF/V3/Tasks/GetScannerStatus.py | 60 +++++ three/MF/V3/Tasks/ListScannerProjects.py | 63 ++++++ three/MF/V3/Tasks/PullProject.py | 68 ++++++ three/MF/V3/Tasks/PushProject.py | 67 ++++++ three/MF/V3/Tasks/RemoveScannerProjects.py | 65 ++++++ three/MF/V3/Tasks/SetProcessingDevices.py | 60 +++++ three/MF/V3/Tasks/StorageInfo.py | 65 ++++++ three/MF/V3/Tasks/__init__.py | 12 + three/MF/V3/Three.py | 234 ++++++++++++++++++++ three/scanner.py | 48 ++++ three/scanner.pyi | 36 +++ 23 files changed, 1212 insertions(+), 1 deletion(-) create mode 100644 three/MF/V3/Descriptors/ProtocolInfo.py create mode 100644 three/MF/V3/Descriptors/ScanCapture.py create mode 100644 three/MF/V3/Descriptors/ScannerList.py create mode 100644 three/MF/V3/Descriptors/ScannerStatus.py create mode 100644 three/MF/V3/Descriptors/StorageInfo.py create mode 100644 three/MF/V3/Tasks/ConnectScanner.py create mode 100644 three/MF/V3/Tasks/DisconnectScanner.py create mode 100644 three/MF/V3/Tasks/DiscoverScanners.py create mode 100644 three/MF/V3/Tasks/DownloadScannerProject.py create mode 100644 three/MF/V3/Tasks/GetProtocolInfo.py create mode 100644 three/MF/V3/Tasks/GetScannerStatus.py create mode 100644 three/MF/V3/Tasks/ListScannerProjects.py create mode 100644 three/MF/V3/Tasks/PullProject.py create mode 100644 three/MF/V3/Tasks/PushProject.py create mode 100644 three/MF/V3/Tasks/RemoveScannerProjects.py create mode 100644 three/MF/V3/Tasks/SetProcessingDevices.py create mode 100644 three/MF/V3/Tasks/StorageInfo.py diff --git a/V3Schema b/V3Schema index 38f63b2..34f9cdc 160000 --- a/V3Schema +++ b/V3Schema @@ -1 +1 @@ -Subproject commit 38f63b25d57ef9263393a5039e04612774e34233 +Subproject commit 34f9cdcaae462bf05f1b65c29f171b6f212e65c2 diff --git a/three/MF/V3/Descriptors/ProtocolInfo.py b/three/MF/V3/Descriptors/ProtocolInfo.py new file mode 100644 index 0000000..3a8e76f --- /dev/null +++ b/three/MF/V3/Descriptors/ProtocolInfo.py @@ -0,0 +1,23 @@ +from typing import List + + +class ProtocolInfo: + """ + Desktop-processing protocol capability descriptor, returned by the + `GetProtocolInfo` task. Lets a desktop engine detect what a connected + scanner supports and degrade gracefully against older firmware. + """ + def __init__(self, version: int, capabilities: List[str] = None): + # Desktop-processing protocol version. + self.version = version + """ + Capability tokens supported by this server. + + Known capabilities: + - "scanCaptureStreaming": the server can stream raw scan captures to a + client for desktop processing (see the `SetProcessingDevices` task + and the `ScanCapture` descriptor). + """ + self.capabilities = capabilities + + diff --git a/three/MF/V3/Descriptors/ScanCapture.py b/three/MF/V3/Descriptors/ScanCapture.py new file mode 100644 index 0000000..a06144f --- /dev/null +++ b/three/MF/V3/Descriptors/ScanCapture.py @@ -0,0 +1,36 @@ +class ScanCapture: + """ + Raw scan capture image descriptor streamed to clients that process scans + themselves (`SetProcessingDevices` client processing). Each stereo capture + is sent as two buffers, one per camera, described by this descriptor. + + The buffer payload is the raw image data: `rows` rows of `step` bytes, + pixel format given by the OpenCV type code in `type`. + """ + def __init__(self, rows: int, cols: int, type: int, step: int, camera: int, focus: int, index: int, orientation: int, frequency: int, phase: int, angle: float, texture: bool): + # Image rows. + self.rows = rows + # Image columns. + self.cols = cols + # OpenCV Mat type code (e.g. CV_8UC1). + self.type = type + # Row step in bytes. + self.step = step + # Camera index (0 or 1). + self.camera = camera + # Camera focus. + self.focus = focus + # Capture (turntable angle) index. + self.index = index + # Pattern orientation, or -1 for texture captures. + self.orientation = orientation + # Pattern frequency, or -1 for texture captures. + self.frequency = frequency + # Pattern phase, or -1 for texture captures. + self.phase = phase + # Turntable angle in radians. + self.angle = angle + # True if this is a texture capture. + self.texture = texture + + diff --git a/three/MF/V3/Descriptors/ScannerList.py b/three/MF/V3/Descriptors/ScannerList.py new file mode 100644 index 0000000..88455c2 --- /dev/null +++ b/three/MF/V3/Descriptors/ScannerList.py @@ -0,0 +1,30 @@ +from typing import List + + +class ScannerList: + """ + Scanners discovered on the local network, returned by the + `DiscoverScanners` task. + """ + class Scanner: + + """ + A discovered scanner. + """ + def __init__(self, name: str, host: str, ip: str, port: int, version: str): + # The scanner's advertised name (e.g. "THREE"). + self.name = name + # The scanner's mDNS host name (e.g. "matterandform.local"). + self.host = host + # The scanner's IPv4 address. + self.ip = ip + # The scanner's server port. + self.port = port + # The scanner's advertised server version. Empty if not advertised. + self.version = version + + def __init__(self, scanners: List['Scanner'] = None): + # The discovered scanners. + self.scanners = scanners + + diff --git a/three/MF/V3/Descriptors/ScannerStatus.py b/three/MF/V3/Descriptors/ScannerStatus.py new file mode 100644 index 0000000..3560650 --- /dev/null +++ b/three/MF/V3/Descriptors/ScannerStatus.py @@ -0,0 +1,14 @@ +class ScannerStatus: + """ + The desktop engine's scanner connection status. + + Returned by the `GetScannerStatus` task and pushed to every client as a + `{"ScannerStatus": {...}}` message whenever the connection state changes. + """ + def __init__(self, connected: bool, host: str): + # True if the engine is connected to a scanner. + self.connected = connected + # The connected scanner's host name or IP address. Empty when not connected. + self.host = host + + diff --git a/three/MF/V3/Descriptors/StorageInfo.py b/three/MF/V3/Descriptors/StorageInfo.py new file mode 100644 index 0000000..049c97f --- /dev/null +++ b/three/MF/V3/Descriptors/StorageInfo.py @@ -0,0 +1,23 @@ +class StorageInfo: + """ + Storage space of the desktop engine's local workspace and, when a scanner + is connected, of the scanner. Returned by the `StorageInfo` task. + """ + class Space: + + """ + Storage space of one side. + """ + def __init__(self, available: int, capacity: int): + # Available bytes. + self.available = available + # Total capacity in bytes. + self.capacity = capacity + + def __init__(self, local: 'Space', scanner: 'Space' = None): + # The engine's local workspace storage. + self.local = local + # The connected scanner's storage. Absent when no scanner is connected. + self.scanner = scanner + + diff --git a/three/MF/V3/Descriptors/__init__.py b/three/MF/V3/Descriptors/__init__.py index b145d8d..4de642c 100644 --- a/three/MF/V3/Descriptors/__init__.py +++ b/three/MF/V3/Descriptors/__init__.py @@ -7,9 +7,14 @@ from MF.V3.Descriptors.Merge import * from MF.V3.Descriptors.Project import * from MF.V3.Descriptors.ProjectActions import * +from MF.V3.Descriptors.ProtocolInfo import * from MF.V3.Descriptors.RemoveVertices import * +from MF.V3.Descriptors.ScanCapture import * from MF.V3.Descriptors.ScanData import * +from MF.V3.Descriptors.ScannerList import * +from MF.V3.Descriptors.ScannerStatus import * from MF.V3.Descriptors.Software import * +from MF.V3.Descriptors.StorageInfo import * from MF.V3.Descriptors.System import * from MF.V3.Descriptors.Transform import * from MF.V3.Descriptors.VideoFrame import * diff --git a/three/MF/V3/Tasks/ConnectScanner.py b/three/MF/V3/Tasks/ConnectScanner.py new file mode 100644 index 0000000..e600533 --- /dev/null +++ b/three/MF/V3/Tasks/ConnectScanner.py @@ -0,0 +1,61 @@ +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class ConnectScanner: + """* + Connect the desktop engine to a scanner (desktop engine only). + + The engine negotiates capabilities with `GetProtocolInfo`, enables client + processing, and downloads the scanner's calibration into its local + workspace. A `ScannerStatus` message is pushed to every client when the + connection state changes. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"ConnectScanner", "Input":"matterandform.local" } + } + ``` + + > Response example: + + ```json + { + "Task":{ "Index":1, "Type":"ConnectScanner", "Output":true, "State":"Completed" } + } + ``` + """ + class Request: + + """ + Client request for the `ConnectScanner` task. + """ + def __init__(self, Index: int, Type: str, Input: str): + # A unique identifier generated by the client. + self.Index = Index + # "ConnectScanner" + self.Type = Type + # The scanner host name or IPv4 address. + self.Input = Input + + class Response: + + """ + Server response for the `ConnectScanner` task. + """ + def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "ConnectScanner" + self.Type = Type + # True if the connection was established. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/DisconnectScanner.py b/three/MF/V3/Tasks/DisconnectScanner.py new file mode 100644 index 0000000..3610da8 --- /dev/null +++ b/three/MF/V3/Tasks/DisconnectScanner.py @@ -0,0 +1,54 @@ +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class DisconnectScanner: + """* + Disconnect the desktop engine from its scanner (desktop engine only). + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"DisconnectScanner" } + } + ``` + + > Response example: + + ```json + { + "Task":{ "Index":1, "Type":"DisconnectScanner", "Output":true, "State":"Completed" } + } + ``` + """ + class Request: + + """ + Client request for the `DisconnectScanner` task. + """ + def __init__(self, Index: int, Type: str): + # A unique identifier generated by the client. + self.Index = Index + # "DisconnectScanner" + self.Type = Type + + class Response: + + """ + Server response for the `DisconnectScanner` task. + """ + def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "DisconnectScanner" + self.Type = Type + # Always true. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/DiscoverScanners.py b/three/MF/V3/Tasks/DiscoverScanners.py new file mode 100644 index 0000000..65c8a29 --- /dev/null +++ b/three/MF/V3/Tasks/DiscoverScanners.py @@ -0,0 +1,65 @@ +from MF.V3.Descriptors.ScannerList import ScannerList +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class DiscoverScanners: + """* + Discover scanners on the local network (desktop engine only). + + The engine browses mDNS for advertised scanners and additionally resolves + the default scanner host name, so scanners running older firmware that does + not advertise a service record are still found. The search runs for a few + seconds before the result is returned; run the task again to refresh. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"DiscoverScanners" } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"DiscoverScanners", + "Output":{ "scanners":[{ "name":"THREE", "host":"matterandform.local", "ip":"192.168.50.115", "port":8081 }] }, + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `DiscoverScanners` task. + """ + def __init__(self, Index: int, Type: str): + # A unique identifier generated by the client. + self.Index = Index + # "DiscoverScanners" + self.Type = Type + + class Response: + + """ + Server response for the `DiscoverScanners` task. + """ + def __init__(self, Index: int, Type: str, Output: ScannerList = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "DiscoverScanners" + self.Type = Type + # The discovered scanners. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/DownloadScannerProject.py b/three/MF/V3/Tasks/DownloadScannerProject.py new file mode 100644 index 0000000..003889f --- /dev/null +++ b/three/MF/V3/Tasks/DownloadScannerProject.py @@ -0,0 +1,59 @@ +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class DownloadScannerProject: + """* + Download a project archive from the connected scanner (desktop engine + only). + + The archive is sent to the client as a task buffer whose descriptor is the + suggested file name. The counterpart of `DownloadProject`, which archives a + local project. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"DownloadScannerProject", "Input":2 } + } + ``` + + > Response example: + + ```json + { + "Task":{ "Index":1, "Type":"DownloadScannerProject", "State":"Completed" } + } + ``` + """ + class Request: + + """ + Client request for the `DownloadScannerProject` task. + """ + def __init__(self, Index: int, Type: str, Input: int): + # A unique identifier generated by the client. + self.Index = Index + # "DownloadScannerProject" + self.Type = Type + # The scanner project index to download. + self.Input = Input + + class Response: + + """ + Server response for the `DownloadScannerProject` task. + """ + def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "DownloadScannerProject" + self.Type = Type + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/GetProtocolInfo.py b/three/MF/V3/Tasks/GetProtocolInfo.py new file mode 100644 index 0000000..c14329a --- /dev/null +++ b/three/MF/V3/Tasks/GetProtocolInfo.py @@ -0,0 +1,63 @@ +from MF.V3.Descriptors.ProtocolInfo import ProtocolInfo +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class GetProtocolInfo: + """* + Get the desktop-processing protocol version and capabilities. + + Older firmware does not implement this task; clients treat a failure as a + server without desktop-processing capabilities. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"GetProtocolInfo" } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"GetProtocolInfo", + "Output":{ "version":1, "capabilities":["scanCaptureStreaming"] }, + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `GetProtocolInfo` task. + """ + def __init__(self, Index: int, Type: str): + # A unique identifier generated by the client. + self.Index = Index + # "GetProtocolInfo" + self.Type = Type + + class Response: + + """ + Server response for the `GetProtocolInfo` task. + """ + def __init__(self, Index: int, Type: str, Output: ProtocolInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "GetProtocolInfo" + self.Type = Type + # The protocol capability descriptor. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/GetScannerStatus.py b/three/MF/V3/Tasks/GetScannerStatus.py new file mode 100644 index 0000000..44f42ae --- /dev/null +++ b/three/MF/V3/Tasks/GetScannerStatus.py @@ -0,0 +1,60 @@ +from MF.V3.Descriptors.ScannerStatus import ScannerStatus +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class GetScannerStatus: + """* + Get the desktop engine's scanner connection status (desktop engine only). + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"GetScannerStatus" } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"GetScannerStatus", + "Output":{ "connected":true, "host":"192.168.50.115" }, + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `GetScannerStatus` task. + """ + def __init__(self, Index: int, Type: str): + # A unique identifier generated by the client. + self.Index = Index + # "GetScannerStatus" + self.Type = Type + + class Response: + + """ + Server response for the `GetScannerStatus` task. + """ + def __init__(self, Index: int, Type: str, Output: ScannerStatus = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "GetScannerStatus" + self.Type = Type + # The scanner connection status. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/ListScannerProjects.py b/three/MF/V3/Tasks/ListScannerProjects.py new file mode 100644 index 0000000..7d702fa --- /dev/null +++ b/three/MF/V3/Tasks/ListScannerProjects.py @@ -0,0 +1,63 @@ +from MF.V3.Descriptors.Project import Project +from MF.V3.Task import TaskState as MF_V3_Task_TaskState +from typing import List + + +class ListScannerProjects: + """* + List the projects on the connected scanner (desktop engine only). + + The counterpart of `ListProjects`, which lists the engine's local projects. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"ListScannerProjects" } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"ListScannerProjects", + "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }], + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `ListScannerProjects` task. + """ + def __init__(self, Index: int, Type: str): + # A unique identifier generated by the client. + self.Index = Index + # "ListScannerProjects" + self.Type = Type + + class Response: + + """ + Server response for the `ListScannerProjects` task. + """ + def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "ListScannerProjects" + self.Type = Type + # The scanner's project list. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/PullProject.py b/three/MF/V3/Tasks/PullProject.py new file mode 100644 index 0000000..192cfad --- /dev/null +++ b/three/MF/V3/Tasks/PullProject.py @@ -0,0 +1,68 @@ +from MF.V3.Descriptors.Project import Project +from MF.V3.Task import TaskState as MF_V3_Task_TaskState +from typing import List + + +class PullProject: + """* + Copy a project from the connected scanner into the local workspace + (desktop engine only). + + The engine downloads the scanner project's archive and imports it as a new + local copy (it always receives a new project index). Progress covers the + archive, transfer and extraction phases as one range. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"PullProject", "Input":2 } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"PullProject", + "Output":[{ "index":4, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }], + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `PullProject` task. + """ + def __init__(self, Index: int, Type: str, Input: int): + # A unique identifier generated by the client. + self.Index = Index + # "PullProject" + self.Type = Type + # The scanner project index to copy to the local workspace. + self.Input = Input + + class Response: + + """ + Server response for the `PullProject` task. + """ + def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "PullProject" + self.Type = Type + # The engine's updated local project list. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/PushProject.py b/three/MF/V3/Tasks/PushProject.py new file mode 100644 index 0000000..a4d6f45 --- /dev/null +++ b/three/MF/V3/Tasks/PushProject.py @@ -0,0 +1,67 @@ +from MF.V3.Descriptors.Project import Project +from MF.V3.Task import TaskState as MF_V3_Task_TaskState +from typing import List + + +class PushProject: + """* + Copy a local project to the connected scanner (desktop engine only). + + The engine archives the local project, uploads it to the scanner, and the + scanner imports it as a new copy (it always receives a new project index). + Progress covers the archive, transfer and extraction phases as one range. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"PushProject", "Input":3 } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"PushProject", + "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }], + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `PushProject` task. + """ + def __init__(self, Index: int, Type: str, Input: int): + # A unique identifier generated by the client. + self.Index = Index + # "PushProject" + self.Type = Type + # The local project index to copy to the scanner. + self.Input = Input + + class Response: + + """ + Server response for the `PushProject` task. + """ + def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "PushProject" + self.Type = Type + # The scanner's updated project list. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/RemoveScannerProjects.py b/three/MF/V3/Tasks/RemoveScannerProjects.py new file mode 100644 index 0000000..e2f36b7 --- /dev/null +++ b/three/MF/V3/Tasks/RemoveScannerProjects.py @@ -0,0 +1,65 @@ +from MF.V3.Descriptors.Project import Project +from MF.V3.Task import TaskState as MF_V3_Task_TaskState +from typing import List + + +class RemoveScannerProjects: + """* + Remove projects on the connected scanner (desktop engine only). + + The counterpart of `RemoveProjects`, which removes local projects. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"RemoveScannerProjects", "Input":[2, 3] } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"RemoveScannerProjects", + "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }], + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `RemoveScannerProjects` task. + """ + def __init__(self, Index: int, Type: str, Input: List[int] = None): + # A unique identifier generated by the client. + self.Index = Index + # "RemoveScannerProjects" + self.Type = Type + # The scanner project indices to remove. + self.Input = Input + + class Response: + + """ + Server response for the `RemoveScannerProjects` task. + """ + def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "RemoveScannerProjects" + self.Type = Type + # The scanner's updated project list. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/SetProcessingDevices.py b/three/MF/V3/Tasks/SetProcessingDevices.py new file mode 100644 index 0000000..cb19473 --- /dev/null +++ b/three/MF/V3/Tasks/SetProcessingDevices.py @@ -0,0 +1,60 @@ +from MF.V3.Task import TaskState as MF_V3_Task_TaskState +from typing import List + + +class SetProcessingDevices: + """* + Select which side processes scan captures for this connection. + + The input is a pair of booleans `[server, client]`. With client processing + enabled the server streams raw scan captures (see the `ScanCapture` + descriptor) to this connection during `NewScan` instead of processing them + on-device. The setting is per-connection: other clients are unaffected. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"SetProcessingDevices", "Input":[false, true] } + } + ``` + + > Response example: + + ```json + { + "Task":{ "Index":1, "Type":"SetProcessingDevices", "State":"Completed" } + } + ``` + """ + class Request: + + """ + Client request for the `SetProcessingDevices` task. + """ + def __init__(self, Index: int, Type: str, Input: List[bool] = None): + # A unique identifier generated by the client. + self.Index = Index + # "SetProcessingDevices" + self.Type = Type + # Processing device flags: [server, client]. + self.Input = Input + + class Response: + + """ + Server response for the `SetProcessingDevices` task. + """ + def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "SetProcessingDevices" + self.Type = Type + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/StorageInfo.py b/three/MF/V3/Tasks/StorageInfo.py new file mode 100644 index 0000000..3af73fe --- /dev/null +++ b/three/MF/V3/Tasks/StorageInfo.py @@ -0,0 +1,65 @@ +from MF.V3.Descriptors.StorageInfo import StorageInfo +from MF.V3.Task import TaskState as MF_V3_Task_TaskState + + +class StorageInfo: + """* + Get the local and scanner storage space (desktop engine only). + + The scanner space is absent when no scanner is connected. + + > Request example: + + ```json + { + "Task":{ "Index":1, "Type":"StorageInfo" } + } + ``` + + > Response example: + + ```json + { + "Task":{ + "Index":1, + "Type":"StorageInfo", + "Output":{ + "local":{ "available":349709045760, "capacity":750199750656 }, + "scanner":{ "available":19096510464, "capacity":30482370560 } + }, + "State":"Completed" + } + } + ``` + """ + class Request: + + """ + Client request for the `StorageInfo` task. + """ + def __init__(self, Index: int, Type: str): + # A unique identifier generated by the client. + self.Index = Index + # "StorageInfo" + self.Type = Type + + class Response: + + """ + Server response for the `StorageInfo` task. + """ + def __init__(self, Index: int, Type: str, Output: StorageInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None): + # The unique identifier generated by the client. + self.Index = Index + # "StorageInfo" + self.Type = Type + # The local and scanner storage space. + self.Output = Output + # The current state of the task. + self.State = State + # A string describing the error if the task has failed. + self.Error = Error + + def __init__(self): + pass + diff --git a/three/MF/V3/Tasks/__init__.py b/three/MF/V3/Tasks/__init__.py index 9a77b6f..e121048 100644 --- a/three/MF/V3/Tasks/__init__.py +++ b/three/MF/V3/Tasks/__init__.py @@ -9,11 +9,15 @@ from MF.V3.Tasks.CaptureImage import * from MF.V3.Tasks.ClearSettings import * from MF.V3.Tasks.CloseProject import * +from MF.V3.Tasks.ConnectScanner import * from MF.V3.Tasks.ConnectWifi import * from MF.V3.Tasks.CopyGroups import * from MF.V3.Tasks.DepthMap import * from MF.V3.Tasks.DetectCalibrationCard import * +from MF.V3.Tasks.DisconnectScanner import * +from MF.V3.Tasks.DiscoverScanners import * from MF.V3.Tasks.DownloadProject import * +from MF.V3.Tasks.DownloadScannerProject import * from MF.V3.Tasks.Export import * from MF.V3.Tasks.ExportFactoryCalibrationLogs import * from MF.V3.Tasks.ExportHeatMap import * @@ -22,6 +26,8 @@ from MF.V3.Tasks.FactoryReset import * from MF.V3.Tasks.FlattenGroup import * from MF.V3.Tasks.ForgetWifi import * +from MF.V3.Tasks.GetProtocolInfo import * +from MF.V3.Tasks.GetScannerStatus import * from MF.V3.Tasks.HasCameras import * from MF.V3.Tasks.HasProjector import * from MF.V3.Tasks.HasTurntable import * @@ -31,6 +37,7 @@ from MF.V3.Tasks.ListGroups import * from MF.V3.Tasks.ListNetworkInterfaces import * from MF.V3.Tasks.ListProjects import * +from MF.V3.Tasks.ListScannerProjects import * from MF.V3.Tasks.ListScans import * from MF.V3.Tasks.ListSettings import * from MF.V3.Tasks.ListWifi import * @@ -42,15 +49,19 @@ from MF.V3.Tasks.NewScan import * from MF.V3.Tasks.OpenProject import * from MF.V3.Tasks.PopSettings import * +from MF.V3.Tasks.PullProject import * +from MF.V3.Tasks.PushProject import * from MF.V3.Tasks.PushSettings import * from MF.V3.Tasks.Reboot import * from MF.V3.Tasks.RemoveGroups import * from MF.V3.Tasks.RemoveProjects import * +from MF.V3.Tasks.RemoveScannerProjects import * from MF.V3.Tasks.RestoreFactoryCalibration import * from MF.V3.Tasks.RotateTurntable import * from MF.V3.Tasks.ScanData import * from MF.V3.Tasks.SetCameras import * from MF.V3.Tasks.SetGroup import * +from MF.V3.Tasks.SetProcessingDevices import * from MF.V3.Tasks.SetProject import * from MF.V3.Tasks.SetProjector import * from MF.V3.Tasks.Shutdown import * @@ -58,6 +69,7 @@ from MF.V3.Tasks.SplitGroup import * from MF.V3.Tasks.StartVideo import * from MF.V3.Tasks.StopVideo import * +from MF.V3.Tasks.StorageInfo import * from MF.V3.Tasks.SystemInfo import * from MF.V3.Tasks.TransformGroup import * from MF.V3.Tasks.TurntableCalibration import * diff --git a/three/MF/V3/Three.py b/three/MF/V3/Three.py index 8e42d7e..c80c29e 100644 --- a/three/MF/V3/Three.py +++ b/three/MF/V3/Three.py @@ -38,11 +38,15 @@ from MF.V3.Tasks.CaptureImage import CaptureImage as MF_V3_Tasks_CaptureImage from MF.V3.Tasks.ClearSettings import ClearSettings as MF_V3_Tasks_ClearSettings from MF.V3.Tasks.CloseProject import CloseProject as MF_V3_Tasks_CloseProject +from MF.V3.Tasks.ConnectScanner import ConnectScanner as MF_V3_Tasks_ConnectScanner from MF.V3.Tasks.ConnectWifi import ConnectWifi as MF_V3_Tasks_ConnectWifi from MF.V3.Tasks.CopyGroups import CopyGroups as MF_V3_Tasks_CopyGroups from MF.V3.Tasks.DepthMap import DepthMap as MF_V3_Tasks_DepthMap from MF.V3.Tasks.DetectCalibrationCard import DetectCalibrationCard as MF_V3_Tasks_DetectCalibrationCard +from MF.V3.Tasks.DisconnectScanner import DisconnectScanner as MF_V3_Tasks_DisconnectScanner +from MF.V3.Tasks.DiscoverScanners import DiscoverScanners as MF_V3_Tasks_DiscoverScanners from MF.V3.Tasks.DownloadProject import DownloadProject as MF_V3_Tasks_DownloadProject +from MF.V3.Tasks.DownloadScannerProject import DownloadScannerProject as MF_V3_Tasks_DownloadScannerProject from MF.V3.Tasks.Export import Export as MF_V3_Tasks_Export from MF.V3.Tasks.ExportFactoryCalibrationLogs import ExportFactoryCalibrationLogs as MF_V3_Tasks_ExportFactoryCalibrationLogs from MF.V3.Tasks.ExportHeatMap import ExportHeatMap as MF_V3_Tasks_ExportHeatMap @@ -51,6 +55,8 @@ from MF.V3.Tasks.FactoryReset import FactoryReset as MF_V3_Tasks_FactoryReset from MF.V3.Tasks.FlattenGroup import FlattenGroup as MF_V3_Tasks_FlattenGroup from MF.V3.Tasks.ForgetWifi import ForgetWifi as MF_V3_Tasks_ForgetWifi +from MF.V3.Tasks.GetProtocolInfo import GetProtocolInfo as MF_V3_Tasks_GetProtocolInfo +from MF.V3.Tasks.GetScannerStatus import GetScannerStatus as MF_V3_Tasks_GetScannerStatus from MF.V3.Tasks.HasCameras import HasCameras as MF_V3_Tasks_HasCameras from MF.V3.Tasks.HasProjector import HasProjector as MF_V3_Tasks_HasProjector from MF.V3.Tasks.HasTurntable import HasTurntable as MF_V3_Tasks_HasTurntable @@ -60,6 +66,7 @@ from MF.V3.Tasks.ListGroups import ListGroups as MF_V3_Tasks_ListGroups from MF.V3.Tasks.ListNetworkInterfaces import ListNetworkInterfaces as MF_V3_Tasks_ListNetworkInterfaces from MF.V3.Tasks.ListProjects import ListProjects as MF_V3_Tasks_ListProjects +from MF.V3.Tasks.ListScannerProjects import ListScannerProjects as MF_V3_Tasks_ListScannerProjects from MF.V3.Tasks.ListScans import ListScans as MF_V3_Tasks_ListScans from MF.V3.Tasks.ListSettings import ListSettings as MF_V3_Tasks_ListSettings from MF.V3.Tasks.ListWifi import ListWifi as MF_V3_Tasks_ListWifi @@ -71,15 +78,19 @@ from MF.V3.Tasks.NewScan import NewScan as MF_V3_Tasks_NewScan from MF.V3.Tasks.OpenProject import OpenProject as MF_V3_Tasks_OpenProject from MF.V3.Tasks.PopSettings import PopSettings as MF_V3_Tasks_PopSettings +from MF.V3.Tasks.PullProject import PullProject as MF_V3_Tasks_PullProject +from MF.V3.Tasks.PushProject import PushProject as MF_V3_Tasks_PushProject from MF.V3.Tasks.PushSettings import PushSettings as MF_V3_Tasks_PushSettings from MF.V3.Tasks.Reboot import Reboot as MF_V3_Tasks_Reboot from MF.V3.Tasks.RemoveGroups import RemoveGroups as MF_V3_Tasks_RemoveGroups from MF.V3.Tasks.RemoveProjects import RemoveProjects as MF_V3_Tasks_RemoveProjects +from MF.V3.Tasks.RemoveScannerProjects import RemoveScannerProjects as MF_V3_Tasks_RemoveScannerProjects from MF.V3.Tasks.RestoreFactoryCalibration import RestoreFactoryCalibration as MF_V3_Tasks_RestoreFactoryCalibration from MF.V3.Tasks.RotateTurntable import RotateTurntable as MF_V3_Tasks_RotateTurntable from MF.V3.Tasks.ScanData import ScanData as MF_V3_Tasks_ScanData from MF.V3.Tasks.SetCameras import SetCameras as MF_V3_Tasks_SetCameras from MF.V3.Tasks.SetGroup import SetGroup as MF_V3_Tasks_SetGroup +from MF.V3.Tasks.SetProcessingDevices import SetProcessingDevices as MF_V3_Tasks_SetProcessingDevices from MF.V3.Tasks.SetProject import SetProject as MF_V3_Tasks_SetProject from MF.V3.Tasks.SetProjector import SetProjector as MF_V3_Tasks_SetProjector from MF.V3.Tasks.Shutdown import Shutdown as MF_V3_Tasks_Shutdown @@ -87,6 +98,7 @@ from MF.V3.Tasks.SplitGroup import SplitGroup as MF_V3_Tasks_SplitGroup from MF.V3.Tasks.StartVideo import StartVideo as MF_V3_Tasks_StartVideo from MF.V3.Tasks.StopVideo import StopVideo as MF_V3_Tasks_StopVideo +from MF.V3.Tasks.StorageInfo import StorageInfo as MF_V3_Tasks_StorageInfo from MF.V3.Tasks.SystemInfo import SystemInfo as MF_V3_Tasks_SystemInfo from MF.V3.Tasks.TransformGroup import TransformGroup as MF_V3_Tasks_TransformGroup from MF.V3.Tasks.TurntableCalibration import TurntableCalibration as MF_V3_Tasks_TurntableCalibration @@ -1575,5 +1587,227 @@ def shutdown(self) -> Task: return task +def get_protocol_info(self) -> Task: + + """ + Get the desktop-processing protocol version and capabilities. + """ + get_protocol_info_request = MF_V3_Tasks_GetProtocolInfo.Request( + Index=0, + Type="GetProtocolInfo" + ) + get_protocol_info_response = MF_V3_Tasks_GetProtocolInfo.Response( + Index=0, + Type="GetProtocolInfo" + ) + task = Task(Index=0, Type="GetProtocolInfo", Input=get_protocol_info_request, Output=get_protocol_info_response) + self.SendTask(task) + return task + + +def set_processing_devices(self, Input: List[bool] = None) -> Task: + + """ + Select the scan processing devices (server and/or client processing). + """ + set_processing_devices_request = MF_V3_Tasks_SetProcessingDevices.Request( + Index=0, + Type="SetProcessingDevices", + Input=Input + ) + set_processing_devices_response = MF_V3_Tasks_SetProcessingDevices.Response( + Index=0, + Type="SetProcessingDevices" + ) + task = Task(Index=0, Type="SetProcessingDevices", Input=set_processing_devices_request, Output=set_processing_devices_response) + self.SendTask(task) + return task + + +def connect_scanner(self, Input: str) -> Task: + + """ + Connect the desktop engine to a scanner (desktop engine only). + """ + connect_scanner_request = MF_V3_Tasks_ConnectScanner.Request( + Index=0, + Type="ConnectScanner", + Input=Input + ) + connect_scanner_response = MF_V3_Tasks_ConnectScanner.Response( + Index=0, + Type="ConnectScanner" + ) + task = Task(Index=0, Type="ConnectScanner", Input=connect_scanner_request, Output=connect_scanner_response) + self.SendTask(task) + return task + + +def disconnect_scanner(self) -> Task: + + """ + Disconnect the desktop engine from its scanner (desktop engine only). + """ + disconnect_scanner_request = MF_V3_Tasks_DisconnectScanner.Request( + Index=0, + Type="DisconnectScanner" + ) + disconnect_scanner_response = MF_V3_Tasks_DisconnectScanner.Response( + Index=0, + Type="DisconnectScanner" + ) + task = Task(Index=0, Type="DisconnectScanner", Input=disconnect_scanner_request, Output=disconnect_scanner_response) + self.SendTask(task) + return task + + +def get_scanner_status(self) -> Task: + + """ + Get the desktop engine's scanner connection status (desktop engine only). + """ + get_scanner_status_request = MF_V3_Tasks_GetScannerStatus.Request( + Index=0, + Type="GetScannerStatus" + ) + get_scanner_status_response = MF_V3_Tasks_GetScannerStatus.Response( + Index=0, + Type="GetScannerStatus" + ) + task = Task(Index=0, Type="GetScannerStatus", Input=get_scanner_status_request, Output=get_scanner_status_response) + self.SendTask(task) + return task + + +def list_scanner_projects(self) -> Task: + + """ + List the projects on the connected scanner (desktop engine only). + """ + list_scanner_projects_request = MF_V3_Tasks_ListScannerProjects.Request( + Index=0, + Type="ListScannerProjects" + ) + list_scanner_projects_response = MF_V3_Tasks_ListScannerProjects.Response( + Index=0, + Type="ListScannerProjects" + ) + task = Task(Index=0, Type="ListScannerProjects", Input=list_scanner_projects_request, Output=list_scanner_projects_response) + self.SendTask(task) + return task + + +def push_project(self, Input: int) -> Task: + + """ + Copy a local project to the connected scanner (desktop engine only). + """ + push_project_request = MF_V3_Tasks_PushProject.Request( + Index=0, + Type="PushProject", + Input=Input + ) + push_project_response = MF_V3_Tasks_PushProject.Response( + Index=0, + Type="PushProject" + ) + task = Task(Index=0, Type="PushProject", Input=push_project_request, Output=push_project_response) + self.SendTask(task) + return task + + +def pull_project(self, Input: int) -> Task: + + """ + Copy a project from the connected scanner into the local workspace (desktop engine only). + """ + pull_project_request = MF_V3_Tasks_PullProject.Request( + Index=0, + Type="PullProject", + Input=Input + ) + pull_project_response = MF_V3_Tasks_PullProject.Response( + Index=0, + Type="PullProject" + ) + task = Task(Index=0, Type="PullProject", Input=pull_project_request, Output=pull_project_response) + self.SendTask(task) + return task + + +def remove_scanner_projects(self, Input: List[int] = None) -> Task: + + """ + Remove projects on the connected scanner (desktop engine only). + """ + remove_scanner_projects_request = MF_V3_Tasks_RemoveScannerProjects.Request( + Index=0, + Type="RemoveScannerProjects", + Input=Input + ) + remove_scanner_projects_response = MF_V3_Tasks_RemoveScannerProjects.Response( + Index=0, + Type="RemoveScannerProjects" + ) + task = Task(Index=0, Type="RemoveScannerProjects", Input=remove_scanner_projects_request, Output=remove_scanner_projects_response) + self.SendTask(task) + return task + + +def download_scanner_project(self, Input: int) -> Task: + + """ + Download a project archive from the connected scanner (desktop engine only). + """ + download_scanner_project_request = MF_V3_Tasks_DownloadScannerProject.Request( + Index=0, + Type="DownloadScannerProject", + Input=Input + ) + download_scanner_project_response = MF_V3_Tasks_DownloadScannerProject.Response( + Index=0, + Type="DownloadScannerProject" + ) + task = Task(Index=0, Type="DownloadScannerProject", Input=download_scanner_project_request, Output=download_scanner_project_response) + self.SendTask(task) + return task + + +def storage_info(self) -> Task: + + """ + Get the local and scanner storage space (desktop engine only). + """ + storage_info_request = MF_V3_Tasks_StorageInfo.Request( + Index=0, + Type="StorageInfo" + ) + storage_info_response = MF_V3_Tasks_StorageInfo.Response( + Index=0, + Type="StorageInfo" + ) + task = Task(Index=0, Type="StorageInfo", Input=storage_info_request, Output=storage_info_response) + self.SendTask(task) + return task + + +def discover_scanners(self) -> Task: + + """ + Discover scanners on the local network (desktop engine only). + """ + discover_scanners_request = MF_V3_Tasks_DiscoverScanners.Request( + Index=0, + Type="DiscoverScanners" + ) + discover_scanners_response = MF_V3_Tasks_DiscoverScanners.Response( + Index=0, + Type="DiscoverScanners" + ) + task = Task(Index=0, Type="DiscoverScanners", Input=discover_scanners_request, Output=discover_scanners_response) + self.SendTask(task) + return task + + diff --git a/three/scanner.py b/three/scanner.py index a29bfbf..493e5d0 100644 --- a/three/scanner.py +++ b/three/scanner.py @@ -425,6 +425,10 @@ def close_project(self) -> 'Task': """Close the current open project.""" return Three.close_project(self) + def connect_scanner(self, Input: 'str') -> 'Task': + """Connect the desktop engine to a scanner (desktop engine only).""" + return Three.connect_scanner(self, Input) + def connect_wifi(self, ssid: 'str', password: 'str') -> 'Task': """Connect to a wifi network.""" return Three.connect_wifi(self, ssid, password) @@ -441,10 +445,22 @@ def detect_calibration_card(self, Input: 'int') -> 'Task': """Detect the calibration card on one or both cameras.""" return Three.detect_calibration_card(self, Input) + def disconnect_scanner(self) -> 'Task': + """Disconnect the desktop engine from its scanner (desktop engine only).""" + return Three.disconnect_scanner(self) + + def discover_scanners(self) -> 'Task': + """Discover scanners on the local network (desktop engine only).""" + return Three.discover_scanners(self) + def download_project(self, Input: 'int') -> 'Task': """Download a project from the scanner.""" return Three.download_project(self, Input) + def download_scanner_project(self, Input: 'int') -> 'Task': + """Download a project archive from the connected scanner (desktop engine only).""" + return Three.download_scanner_project(self, Input) + def export(self, selection: 'ScanSelection' = None, texture: 'bool' = None, merge: 'bool' = None, format: 'Export.Format' = None, scale: 'float' = None, color: 'Export.Color' = None) -> 'Task': """Export a group of scans.""" return Three.export(self, selection, texture, merge, format, scale, color) @@ -477,6 +493,14 @@ def forget_wifi(self) -> 'Task': """Forget all wifi connections.""" return Three.forget_wifi(self) + def get_protocol_info(self) -> 'Task': + """Get the desktop-processing protocol version and capabilities.""" + return Three.get_protocol_info(self) + + def get_scanner_status(self) -> 'Task': + """Get the desktop engine's scanner connection status (desktop engine only).""" + return Three.get_scanner_status(self) + def has_cameras(self) -> 'Task': """Check if the scanner has working cameras.""" return Three.has_cameras(self) @@ -513,6 +537,10 @@ def list_projects(self) -> 'Task': """List all projects.""" return Three.list_projects(self) + def list_scanner_projects(self) -> 'Task': + """List the projects on the connected scanner (desktop engine only).""" + return Three.list_scanner_projects(self) + def list_scans(self) -> 'Task': """List the scans in the current open project.""" return Three.list_scans(self) @@ -557,6 +585,14 @@ def pop_settings(self, Input: 'bool' = None) -> 'Task': """Pop and restore scanner settings from the settings stack.""" return Three.pop_settings(self, Input) + def pull_project(self, Input: 'int') -> 'Task': + """Copy a project from the connected scanner into the local workspace (desktop engine only).""" + return Three.pull_project(self, Input) + + def push_project(self, Input: 'int') -> 'Task': + """Copy a local project to the connected scanner (desktop engine only).""" + return Three.push_project(self, Input) + def push_settings(self) -> 'Task': """Push the current scanner settings to the settings stack.""" return Three.push_settings(self) @@ -573,6 +609,10 @@ def remove_projects(self, Input: 'list[int]' = None) -> 'Task': """Remove selected projects.""" return Three.remove_projects(self, Input) + def remove_scanner_projects(self, Input: 'list[int]' = None) -> 'Task': + """Remove projects on the connected scanner (desktop engine only).""" + return Three.remove_scanner_projects(self, Input) + def restore_factory_calibration(self) -> 'Task': """Restore factory calibration.""" return Three.restore_factory_calibration(self) @@ -593,6 +633,10 @@ def set_group(self, index: 'int', name: 'str' = None, color: 'list[float]' = Non """Set scan group properties.""" return Three.set_group(self, index, name, color, visible, collapsed, rotation, translation) + def set_processing_devices(self, Input: 'list[bool]' = None) -> 'Task': + """Select the scan processing devices (server and/or client processing).""" + return Three.set_processing_devices(self, Input) + def set_project(self, index: 'int' = None, name: 'str' = None) -> 'Task': """Apply settings to the current open project.""" return Three.set_project(self, index, name) @@ -621,6 +665,10 @@ def stop_video(self) -> 'Task': """Stop the video stream.""" return Three.stop_video(self) + def storage_info(self) -> 'Task': + """Get the local and scanner storage space (desktop engine only).""" + return Three.storage_info(self) + def system_info(self, updateMajor: 'bool' = None, updateNightly: 'bool' = None) -> 'Task': """Get system information.""" return Three.system_info(self, updateMajor, updateNightly) diff --git a/three/scanner.pyi b/three/scanner.pyi index 683b1af..b4aa0bc 100644 --- a/three/scanner.pyi +++ b/three/scanner.pyi @@ -165,6 +165,9 @@ class Scanner: def close_project(self) -> MF.V3.Task.Task: """Close the current open project.""" ... + def connect_scanner(self, Input: str) -> MF.V3.Task.Task: + """Connect the desktop engine to a scanner (desktop engine only).""" + ... def connect_wifi(self, ssid: str, password: str) -> MF.V3.Task.Task: """Connect to a wifi network.""" ... @@ -174,9 +177,18 @@ class Scanner: def detect_calibration_card(self, Input: int) -> MF.V3.Task.Task: """Detect the calibration card on one or both cameras.""" ... + def disconnect_scanner(self) -> MF.V3.Task.Task: + """Disconnect the desktop engine from its scanner (desktop engine only).""" + ... + def discover_scanners(self) -> MF.V3.Task.Task: + """Discover scanners on the local network (desktop engine only).""" + ... def download_project(self, Input: int) -> MF.V3.Task.Task: """Download a project from the scanner.""" ... + def download_scanner_project(self, Input: int) -> MF.V3.Task.Task: + """Download a project archive from the connected scanner (desktop engine only).""" + ... def export(self, selection: MF.V3.Settings.ScanSelection.ScanSelection = None, texture: bool = None, merge: bool = None, format: MF.V3.Settings.Export.Export.Format = None, scale: float = None) -> MF.V3.Task.Task: """Export a group of scans.""" ... @@ -192,6 +204,12 @@ class Scanner: def forget_wifi(self) -> MF.V3.Task.Task: """Forget all wifi connections.""" ... + def get_protocol_info(self) -> MF.V3.Task.Task: + """Get the desktop-processing protocol version and capabilities.""" + ... + def get_scanner_status(self) -> MF.V3.Task.Task: + """Get the desktop engine's scanner connection status (desktop engine only).""" + ... def has_cameras(self) -> MF.V3.Task.Task: """Check if the scanner has working cameras.""" ... @@ -213,6 +231,9 @@ class Scanner: def list_projects(self) -> MF.V3.Task.Task: """List all projects.""" ... + def list_scanner_projects(self) -> MF.V3.Task.Task: + """List the projects on the connected scanner (desktop engine only).""" + ... def list_scans(self) -> MF.V3.Task.Task: """List the scans in the current open project.""" ... @@ -246,6 +267,12 @@ class Scanner: def pop_settings(self, Input: bool = None) -> MF.V3.Task.Task: """Pop and restore scanner settings from the settings stack.""" ... + def pull_project(self, Input: int) -> MF.V3.Task.Task: + """Copy a project from the connected scanner into the local workspace (desktop engine only).""" + ... + def push_project(self, Input: int) -> MF.V3.Task.Task: + """Copy a local project to the connected scanner (desktop engine only).""" + ... def push_settings(self) -> MF.V3.Task.Task: """Push the current scanner settings to the settings stack.""" ... @@ -258,6 +285,9 @@ class Scanner: def remove_projects(self, Input: List[int] = None) -> MF.V3.Task.Task: """Remove selected projects.""" ... + def remove_scanner_projects(self, Input: List[int] = None) -> MF.V3.Task.Task: + """Remove projects on the connected scanner (desktop engine only).""" + ... def restore_factory_calibration(self) -> MF.V3.Task.Task: """Restore factory calibration.""" ... @@ -273,6 +303,9 @@ class Scanner: def set_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> MF.V3.Task.Task: """Set scan group properties.""" ... + def set_processing_devices(self, Input: List[bool] = None) -> MF.V3.Task.Task: + """Select the scan processing devices (server and/or client processing).""" + ... def set_project(self, index: int = None, name: str = None) -> MF.V3.Task.Task: """Apply settings to the current open project.""" ... @@ -291,6 +324,9 @@ class Scanner: def stop_video(self) -> MF.V3.Task.Task: """Stop the video stream.""" ... + def storage_info(self) -> MF.V3.Task.Task: + """Get the local and scanner storage space (desktop engine only).""" + ... def system_info(self, updateMajor: bool = None, updateNightly: bool = None) -> MF.V3.Task.Task: """Get system information.""" ... From c07f7b72f6f284e4a6f53883f7b4be38c5a37052 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 28 Jul 2026 18:55:39 +0000 Subject: [PATCH 2/4] CI: Version bump and transpiled code [skip ci] --- docs/search.js | 2 +- docs/three.html | 8 +- docs/three/MF.html | 6 +- docs/three/MF/V3.html | 6 +- docs/three/MF/V3/Buffer.html | 8 +- docs/three/MF/V3/Descriptors.html | 30 +- docs/three/MF/V3/Descriptors/BoundingBox.html | 6 +- docs/three/MF/V3/Descriptors/Calibration.html | 6 +- .../three/MF/V3/Descriptors/CaptureImage.html | 6 +- docs/three/MF/V3/Descriptors/Export.html | 6 +- docs/three/MF/V3/Descriptors/HeatMap.html | 6 +- docs/three/MF/V3/Descriptors/Image.html | 6 +- docs/three/MF/V3/Descriptors/Import.html | 6 +- docs/three/MF/V3/Descriptors/Merge.html | 6 +- docs/three/MF/V3/Descriptors/Network.html | 6 +- docs/three/MF/V3/Descriptors/Project.html | 6 +- .../MF/V3/Descriptors/ProjectActions.html | 6 +- .../three/MF/V3/Descriptors/ProtocolInfo.html | 376 + .../MF/V3/Descriptors/RemoveVertices.html | 6 +- docs/three/MF/V3/Descriptors/ScanCapture.html | 551 ++ docs/three/MF/V3/Descriptors/ScanData.html | 6 +- docs/three/MF/V3/Descriptors/ScannerList.html | 497 ++ .../MF/V3/Descriptors/ScannerStatus.html | 345 + docs/three/MF/V3/Descriptors/Settings.html | 6 +- .../MF/V3/Descriptors/Settings/Advanced.html | 6 +- .../MF/V3/Descriptors/Settings/Camera.html | 6 +- .../MF/V3/Descriptors/Settings/Capture.html | 6 +- .../MF/V3/Descriptors/Settings/I18n.html | 6 +- .../MF/V3/Descriptors/Settings/Projector.html | 6 +- .../MF/V3/Descriptors/Settings/Scanner.html | 6 +- .../MF/V3/Descriptors/Settings/Software.html | 6 +- .../MF/V3/Descriptors/Settings/Style.html | 6 +- .../MF/V3/Descriptors/Settings/Turntable.html | 6 +- .../MF/V3/Descriptors/Settings/Tutorials.html | 6 +- .../MF/V3/Descriptors/Settings/Viewer.html | 6 +- docs/three/MF/V3/Descriptors/Software.html | 6 +- docs/three/MF/V3/Descriptors/StorageInfo.html | 448 ++ docs/three/MF/V3/Descriptors/System.html | 6 +- docs/three/MF/V3/Descriptors/Transform.html | 6 +- docs/three/MF/V3/Descriptors/VideoFrame.html | 6 +- docs/three/MF/V3/Descriptors/Wifi.html | 6 +- docs/three/MF/V3/Settings.html | 6 +- docs/three/MF/V3/Settings/Advanced.html | 6 +- docs/three/MF/V3/Settings/Align.html | 6 +- docs/three/MF/V3/Settings/AutoFocus.html | 6 +- docs/three/MF/V3/Settings/BoundingBox.html | 6 +- docs/three/MF/V3/Settings/Camera.html | 6 +- docs/three/MF/V3/Settings/Capture.html | 6 +- docs/three/MF/V3/Settings/CaptureImage.html | 6 +- docs/three/MF/V3/Settings/CopyGroups.html | 6 +- docs/three/MF/V3/Settings/CopyProject.html | 6 +- docs/three/MF/V3/Settings/Export.html | 6 +- docs/three/MF/V3/Settings/Group.html | 6 +- docs/three/MF/V3/Settings/HeatMap.html | 6 +- docs/three/MF/V3/Settings/I18n.html | 6 +- docs/three/MF/V3/Settings/Import.html | 6 +- docs/three/MF/V3/Settings/Merge.html | 6 +- docs/three/MF/V3/Settings/NewGroup.html | 6 +- docs/three/MF/V3/Settings/Project.html | 6 +- docs/three/MF/V3/Settings/Projector.html | 6 +- docs/three/MF/V3/Settings/Quality.html | 6 +- docs/three/MF/V3/Settings/Rectangle.html | 6 +- docs/three/MF/V3/Settings/RemoveVertices.html | 6 +- docs/three/MF/V3/Settings/Scan.html | 6 +- docs/three/MF/V3/Settings/ScanData.html | 6 +- docs/three/MF/V3/Settings/ScanSelection.html | 6 +- docs/three/MF/V3/Settings/Scanner.html | 6 +- docs/three/MF/V3/Settings/Smooth.html | 6 +- docs/three/MF/V3/Settings/Software.html | 6 +- docs/three/MF/V3/Settings/Style.html | 6 +- docs/three/MF/V3/Settings/Turntable.html | 6 +- docs/three/MF/V3/Settings/Tutorials.html | 6 +- docs/three/MF/V3/Settings/Video.html | 6 +- docs/three/MF/V3/Settings/Viewer.html | 6 +- docs/three/MF/V3/Settings/Wifi.html | 6 +- docs/three/MF/V3/Task.html | 8 +- docs/three/MF/V3/Tasks.html | 138 +- docs/three/MF/V3/Tasks/AddMergeToProject.html | 6 +- docs/three/MF/V3/Tasks/Align.html | 6 +- docs/three/MF/V3/Tasks/AutoFocus.html | 6 +- docs/three/MF/V3/Tasks/BoundingBox.html | 6 +- docs/three/MF/V3/Tasks/CalibrateCameras.html | 6 +- .../three/MF/V3/Tasks/CalibrateTurntable.html | 6 +- .../V3/Tasks/CalibrationCaptureTargets.html | 6 +- docs/three/MF/V3/Tasks/CameraCalibration.html | 6 +- docs/three/MF/V3/Tasks/CaptureImage.html | 6 +- docs/three/MF/V3/Tasks/ClearSettings.html | 6 +- docs/three/MF/V3/Tasks/CloseProject.html | 6 +- docs/three/MF/V3/Tasks/ConnectScanner.html | 657 ++ docs/three/MF/V3/Tasks/ConnectWifi.html | 6 +- docs/three/MF/V3/Tasks/CopyGroups.html | 6 +- docs/three/MF/V3/Tasks/DepthMap.html | 6 +- .../MF/V3/Tasks/DetectCalibrationCard.html | 6 +- docs/three/MF/V3/Tasks/DisconnectScanner.html | 620 ++ docs/three/MF/V3/Tasks/DiscoverScanners.html | 651 ++ docs/three/MF/V3/Tasks/DownloadProject.html | 6 +- .../MF/V3/Tasks/DownloadScannerProject.html | 635 ++ docs/three/MF/V3/Tasks/Export.html | 6 +- .../Tasks/ExportFactoryCalibrationLogs.html | 6 +- docs/three/MF/V3/Tasks/ExportHeatMap.html | 6 +- docs/three/MF/V3/Tasks/ExportLogs.html | 6 +- docs/three/MF/V3/Tasks/ExportMerge.html | 6 +- docs/three/MF/V3/Tasks/FactoryReset.html | 6 +- docs/three/MF/V3/Tasks/FlattenGroup.html | 6 +- docs/three/MF/V3/Tasks/ForgetWifi.html | 6 +- docs/three/MF/V3/Tasks/GetProtocolInfo.html | 645 ++ docs/three/MF/V3/Tasks/GetScannerStatus.html | 636 ++ docs/three/MF/V3/Tasks/HasCameras.html | 6 +- docs/three/MF/V3/Tasks/HasProjector.html | 6 +- docs/three/MF/V3/Tasks/HasTurntable.html | 6 +- docs/three/MF/V3/Tasks/HeatMap.html | 6 +- docs/three/MF/V3/Tasks/Import.html | 6 +- docs/three/MF/V3/Tasks/ListExportFormats.html | 6 +- docs/three/MF/V3/Tasks/ListGroups.html | 6 +- .../MF/V3/Tasks/ListNetworkInterfaces.html | 6 +- docs/three/MF/V3/Tasks/ListProjects.html | 6 +- .../MF/V3/Tasks/ListScannerProjects.html | 643 ++ docs/three/MF/V3/Tasks/ListScans.html | 6 +- docs/three/MF/V3/Tasks/ListSettings.html | 6 +- docs/three/MF/V3/Tasks/ListWifi.html | 6 +- docs/three/MF/V3/Tasks/Merge.html | 6 +- docs/three/MF/V3/Tasks/MergeData.html | 6 +- docs/three/MF/V3/Tasks/MoveGroup.html | 6 +- docs/three/MF/V3/Tasks/NewGroup.html | 6 +- docs/three/MF/V3/Tasks/NewProject.html | 6 +- docs/three/MF/V3/Tasks/NewScan.html | 6 +- docs/three/MF/V3/Tasks/OpenProject.html | 6 +- docs/three/MF/V3/Tasks/PopSettings.html | 6 +- docs/three/MF/V3/Tasks/PullProject.html | 674 ++ docs/three/MF/V3/Tasks/PushProject.html | 671 ++ docs/three/MF/V3/Tasks/PushSettings.html | 6 +- docs/three/MF/V3/Tasks/Reboot.html | 6 +- docs/three/MF/V3/Tasks/RemoveGroups.html | 6 +- docs/three/MF/V3/Tasks/RemoveProjects.html | 6 +- .../MF/V3/Tasks/RemoveScannerProjects.html | 665 ++ .../V3/Tasks/RestoreFactoryCalibration.html | 6 +- docs/three/MF/V3/Tasks/RotateTurntable.html | 6 +- docs/three/MF/V3/Tasks/ScanData.html | 6 +- docs/three/MF/V3/Tasks/SetCameras.html | 6 +- docs/three/MF/V3/Tasks/SetGroup.html | 6 +- .../MF/V3/Tasks/SetProcessingDevices.html | 636 ++ docs/three/MF/V3/Tasks/SetProject.html | 6 +- docs/three/MF/V3/Tasks/SetProjector.html | 6 +- docs/three/MF/V3/Tasks/Shutdown.html | 6 +- docs/three/MF/V3/Tasks/Smooth.html | 6 +- docs/three/MF/V3/Tasks/SplitGroup.html | 6 +- docs/three/MF/V3/Tasks/StartVideo.html | 6 +- docs/three/MF/V3/Tasks/StopVideo.html | 6 +- docs/three/MF/V3/Tasks/StorageInfo.html | 651 ++ docs/three/MF/V3/Tasks/SystemInfo.html | 6 +- docs/three/MF/V3/Tasks/TransformGroup.html | 6 +- .../MF/V3/Tasks/TurntableCalibration.html | 6 +- docs/three/MF/V3/Tasks/UpdateSettings.html | 6 +- docs/three/MF/V3/Tasks/UploadProject.html | 6 +- docs/three/MF/V3/Three.html | 6332 +++++++++-------- docs/three/_scanner.html | 8 +- docs/three/scanner.html | 1376 ++-- docs/three/serialization.html | 6 +- three/__init__.py | 2 +- 159 files changed, 14916 insertions(+), 3789 deletions(-) create mode 100644 docs/three/MF/V3/Descriptors/ProtocolInfo.html create mode 100644 docs/three/MF/V3/Descriptors/ScanCapture.html create mode 100644 docs/three/MF/V3/Descriptors/ScannerList.html create mode 100644 docs/three/MF/V3/Descriptors/ScannerStatus.html create mode 100644 docs/three/MF/V3/Descriptors/StorageInfo.html create mode 100644 docs/three/MF/V3/Tasks/ConnectScanner.html create mode 100644 docs/three/MF/V3/Tasks/DisconnectScanner.html create mode 100644 docs/three/MF/V3/Tasks/DiscoverScanners.html create mode 100644 docs/three/MF/V3/Tasks/DownloadScannerProject.html create mode 100644 docs/three/MF/V3/Tasks/GetProtocolInfo.html create mode 100644 docs/three/MF/V3/Tasks/GetScannerStatus.html create mode 100644 docs/three/MF/V3/Tasks/ListScannerProjects.html create mode 100644 docs/three/MF/V3/Tasks/PullProject.html create mode 100644 docs/three/MF/V3/Tasks/PushProject.html create mode 100644 docs/three/MF/V3/Tasks/RemoveScannerProjects.html create mode 100644 docs/three/MF/V3/Tasks/SetProcessingDevices.html create mode 100644 docs/three/MF/V3/Tasks/StorageInfo.html diff --git a/docs/search.js b/docs/search.js index 4b4a426..2e1e9e9 100644 --- a/docs/search.js +++ b/docs/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o

\n"}, "three.MF": {"fullname": "three.MF", "modulename": "three.MF", "kind": "module", "doc": "

\n"}, "three.MF.V3": {"fullname": "three.MF.V3", "modulename": "three.MF.V3", "kind": "module", "doc": "

\n"}, "three.MF.V3.Buffer": {"fullname": "three.MF.V3.Buffer", "modulename": "three.MF.V3.Buffer", "kind": "module", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer": {"fullname": "three.MF.V3.Buffer.Buffer", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer", "kind": "class", "doc": "

*\nGeneric buffer message for the Three Scanner.

\n\n

Some tasks require the server and/or client to transfer binary data. In such cases the _buffer message_ is sent to inform the server/client what the data is and what task it belongs to. The binary data it refers to is sent immediately following the buffer message.

\n\n

For example, DownloadProject requires the server to transfer a ZIP file containing the project data to the client.

\n\n
\n

First, the client sends the task request to the server:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n
\n
\n\n
\n

The server sends the buffer message telling the client to expect a binary data transfer and what to do with it. Note that the buffer message Task field echoes the task request, making it clear which request this data is a response to.

\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"Project-5.zip",\n"Index":0,\n"Size":15682096,\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n}\n
\n
\n\n
\n

The server then sends the 15682096 byte data buffer of the project ZIP file.\n Finally, the server sends a task completion message.

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject"\n"Input":5,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Buffer.Buffer.__init__": {"fullname": "three.MF.V3.Buffer.Buffer.__init__", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None)"}, "three.MF.V3.Buffer.Buffer.Index": {"fullname": "three.MF.V3.Buffer.Buffer.Index", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer.Size": {"fullname": "three.MF.V3.Buffer.Buffer.Size", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer.Task": {"fullname": "three.MF.V3.Buffer.Buffer.Task", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer.Descriptor": {"fullname": "three.MF.V3.Buffer.Buffer.Descriptor", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors": {"fullname": "three.MF.V3.Descriptors", "modulename": "three.MF.V3.Descriptors", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.BoundingBox": {"fullname": "three.MF.V3.Descriptors.BoundingBox", "modulename": "three.MF.V3.Descriptors.BoundingBox", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox", "kind": "class", "doc": "

BoundingBox descriptor.

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcenter: List[float] = None,\tsize: List[float] = None,\trotation: List[float] = None,\ttransform: List[float] = None)"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.center", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.size", "kind": "variable", "doc": "

The 3x3 rotation matrix of the bounding box.\nThe first, second and third column vectors are the x, y and z axes of the bounding box.

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.rotation", "kind": "variable", "doc": "

The 4x4 matrix that transforms the canonical cube with corners [\u00b11, \u00b11, \u00b11] to the\nbounding box in world coordinates.\nThe transform can be used as the model matrix for rendering the bounding box with an\nOpenGL shader.

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.transform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration": {"fullname": "three.MF.V3.Descriptors.Calibration", "modulename": "three.MF.V3.Descriptors.Calibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Quality": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality", "kind": "class", "doc": "

Calibration quality.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Empty", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Empty: 'None'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Poor", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Poor", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Poor: 'Poor'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Fair", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Fair", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Fair: 'Fair'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Good", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Good", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Good: 'Good'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Excellent", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Excellent", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Excellent: 'Excellent'>"}, "three.MF.V3.Descriptors.Calibration.Camera": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera", "kind": "class", "doc": "

Camera calibration descriptor.

\n"}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Descriptors.Calibration.Quality,\tdate: List[int] = None)"}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera.quality", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera.date", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera.date", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable", "kind": "class", "doc": "

Turntable calibration descriptor.

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Descriptors.Calibration.Quality,\tdate: List[int] = None,\tfocus: List[int] = None)"}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.quality", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.date", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.date", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.focus", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget", "kind": "class", "doc": "

Calibration capture target.

\n\n

The camera calibration capture targets are used to draw quad overlays on the video stream to guide a user as to where to position the calibration card for each capture during camera calibration.

\n"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget.__init__", "kind": "function", "doc": "

\n", "signature": "(camera: int, quads: List[float] = None)"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget.camera", "kind": "variable", "doc": "

The target quad for each camera.\nThis is a set of 16 numbers defining the quad coordinates on the left and right camera.\nThe first 4 pairs of numbers define the quad on the left camera.\nThe last 4 pairs of numbers define the quad on the right camera.

\n"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget.quads", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard", "kind": "class", "doc": "

Detected calibration card descriptor.

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsize: List[int] = None,\tquad: List[float] = None,\tcorners: List[float] = None,\ttarget: three.MF.V3.Descriptors.Calibration.DetectedCard.Target = None)"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target", "kind": "class", "doc": "

Calibration capture target properties.

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target.__init__", "kind": "function", "doc": "

A normalized value indicating how closely the calibration card matches the target\noverlay. 0 indicates a poor match. 1 indicates a good match.

\n", "signature": "(match: float, hold: float)"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target.match", "kind": "variable", "doc": "

A normalized value indicating how long the user has held the calibration card steady over\nthe target overlay. When the value reaches 1, the user has held the calibration card\nsteady for the complete required duration.

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target.hold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.size", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.quad", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.quad", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.corners", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.corners", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.target", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.target", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage": {"fullname": "three.MF.V3.Descriptors.CaptureImage", "modulename": "three.MF.V3.Descriptors.CaptureImage", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage", "kind": "class", "doc": "

Capture image descriptor.

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcamera: int,\tcodec: MF.V3.Settings.CaptureImage.CaptureImage.Codec,\tgrayscale: bool,\twidth: int,\theight: int,\tstep: int)"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.grayscale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export": {"fullname": "three.MF.V3.Descriptors.Export", "modulename": "three.MF.V3.Descriptors.Export", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export": {"fullname": "three.MF.V3.Descriptors.Export.Export", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export", "kind": "class", "doc": "

Scan data descriptor.

\n"}, "three.MF.V3.Descriptors.Export.Export.__init__": {"fullname": "three.MF.V3.Descriptors.Export.Export.__init__", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.__init__", "kind": "function", "doc": "

\n", "signature": "(\tformat: MF.V3.Settings.Export.Export.Format,\textension: str,\tdescription: str,\tnormals: bool,\tcolors: bool,\ttextures: three.MF.V3.Descriptors.Export.Export.Texture,\tfaces: List[three.MF.V3.Descriptors.Export.Export.Face] = None)"}, "three.MF.V3.Descriptors.Export.Export.Face": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face", "kind": "class", "doc": "

Geometry face types.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.NoFace", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.NoFace", "kind": "variable", "doc": "

\n", "default_value": "<Face.NoFace: 'NoFace'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Point", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Point", "kind": "variable", "doc": "

\n", "default_value": "<Face.Point: 'Point'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Line", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Line", "kind": "variable", "doc": "

\n", "default_value": "<Face.Line: 'Line'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Triangle", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Triangle", "kind": "variable", "doc": "

\n", "default_value": "<Face.Triangle: 'Triangle'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Quad", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Quad", "kind": "variable", "doc": "

\n", "default_value": "<Face.Quad: 'Quad'>"}, "three.MF.V3.Descriptors.Export.Export.Texture": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture", "kind": "class", "doc": "

Texture support types.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture.Empty", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Texture.Empty: 'None'>"}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture.Single", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture.Single", "kind": "variable", "doc": "

\n", "default_value": "<Texture.Single: 'Single'>"}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture.Multiple", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture.Multiple", "kind": "variable", "doc": "

\n", "default_value": "<Texture.Multiple: 'Multiple'>"}, "three.MF.V3.Descriptors.Export.Export.format": {"fullname": "three.MF.V3.Descriptors.Export.Export.format", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.extension": {"fullname": "three.MF.V3.Descriptors.Export.Export.extension", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.extension", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.description": {"fullname": "three.MF.V3.Descriptors.Export.Export.description", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.description", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.normals": {"fullname": "three.MF.V3.Descriptors.Export.Export.normals", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.normals", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.colors": {"fullname": "three.MF.V3.Descriptors.Export.Export.colors", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.colors", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.textures": {"fullname": "three.MF.V3.Descriptors.Export.Export.textures", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.textures", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.faces": {"fullname": "three.MF.V3.Descriptors.Export.Export.faces", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.faces", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap": {"fullname": "three.MF.V3.Descriptors.HeatMap", "modulename": "three.MF.V3.Descriptors.HeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap", "kind": "class", "doc": "

Heat map descriptor.

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcount: int,\tmin: float,\tmax: float,\tmedian: float,\tmean: float,\tstddev: float,\toutlierDistance: float)"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.count", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.count", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.min", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.max", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.median", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.median", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.mean", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.mean", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.stddev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.outlierDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image": {"fullname": "three.MF.V3.Descriptors.Image", "modulename": "three.MF.V3.Descriptors.Image", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image": {"fullname": "three.MF.V3.Descriptors.Image.Image", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image", "kind": "class", "doc": "

Image descriptor.

\n"}, "three.MF.V3.Descriptors.Image.Image.__init__": {"fullname": "three.MF.V3.Descriptors.Image.Image.__init__", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.__init__", "kind": "function", "doc": "

\n", "signature": "(width: int, height: int, step: int, type: int)"}, "three.MF.V3.Descriptors.Image.Image.width": {"fullname": "three.MF.V3.Descriptors.Image.Image.width", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image.height": {"fullname": "three.MF.V3.Descriptors.Image.Image.height", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image.step": {"fullname": "three.MF.V3.Descriptors.Image.Image.step", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image.type": {"fullname": "three.MF.V3.Descriptors.Image.Image.type", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import": {"fullname": "three.MF.V3.Descriptors.Import", "modulename": "three.MF.V3.Descriptors.Import", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import": {"fullname": "three.MF.V3.Descriptors.Import.Import", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import", "kind": "class", "doc": "

Import scan descriptor.

\n"}, "three.MF.V3.Descriptors.Import.Import.__init__": {"fullname": "three.MF.V3.Descriptors.Import.Import.__init__", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.__init__", "kind": "function", "doc": "

\n", "signature": "(\tgroups: MF.V3.Descriptors.Project.Project.Group,\timported: List[three.MF.V3.Descriptors.Import.Import.Imported] = None,\tignored: List[three.MF.V3.Descriptors.Import.Import.Ignored] = None)"}, "three.MF.V3.Descriptors.Import.Import.Error": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error", "kind": "class", "doc": "

Import error codes.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.Unspecified", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.Unspecified", "kind": "variable", "doc": "

\n", "default_value": "<Error.Unspecified: 'Unspecified'>"}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.FileNotSupported", "kind": "variable", "doc": "

\n", "default_value": "<Error.FileNotSupported: 'FileNotSupported'>"}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.CannotReadFile", "kind": "variable", "doc": "

\n", "default_value": "<Error.CannotReadFile: 'CannotReadFile'>"}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.MeshIsEmpty", "kind": "variable", "doc": "

\n", "default_value": "<Error.MeshIsEmpty: 'MeshIsEmpty'>"}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.NotEnoughStorage", "kind": "variable", "doc": "

\n", "default_value": "<Error.NotEnoughStorage: 'NotEnoughStorage'>"}, "three.MF.V3.Descriptors.Import.Import.Imported": {"fullname": "three.MF.V3.Descriptors.Import.Import.Imported", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Imported", "kind": "class", "doc": "

A file that was successfully imported to the project.

\n"}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"fullname": "three.MF.V3.Descriptors.Import.Import.Imported.__init__", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Imported.__init__", "kind": "function", "doc": "

\n", "signature": "(file: str)"}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"fullname": "three.MF.V3.Descriptors.Import.Import.Imported.file", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Imported.file", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored", "kind": "class", "doc": "

A file that failed to be imported to the project.

\n"}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored.__init__", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored.__init__", "kind": "function", "doc": "

\n", "signature": "(file: str, error: three.MF.V3.Descriptors.Import.Import.Error)"}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored.file", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored.file", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored.error", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored.error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.groups": {"fullname": "three.MF.V3.Descriptors.Import.Import.groups", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.imported": {"fullname": "three.MF.V3.Descriptors.Import.Import.imported", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.imported", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.ignored": {"fullname": "three.MF.V3.Descriptors.Import.Import.ignored", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.ignored", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge": {"fullname": "three.MF.V3.Descriptors.Merge", "modulename": "three.MF.V3.Descriptors.Merge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge": {"fullname": "three.MF.V3.Descriptors.Merge.Merge", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge", "kind": "class", "doc": "

Merge descriptor.

\n"}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.__init__", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: int,\ttextures: int,\tmaxSimplifyCount: int,\tmeshes: List[three.MF.V3.Descriptors.Merge.Merge.Mesh] = None)"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh", "kind": "class", "doc": "

Mesh descriptor.

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tname: str,\ttriangles: int,\tquads: int,\tpositions: int,\tnormals: int,\tuvs: int,\tsize: int)"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.name", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.triangles", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.quads", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.positions", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.normals", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.uvs", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.size", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.scans", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.textures", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.textures", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.maxSimplifyCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.meshes", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.meshes", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Network": {"fullname": "three.MF.V3.Descriptors.Network", "modulename": "three.MF.V3.Descriptors.Network", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Network.Interface": {"fullname": "three.MF.V3.Descriptors.Network.Interface", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface", "kind": "class", "doc": "

Network interface descriptor.

\n"}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"fullname": "three.MF.V3.Descriptors.Network.Interface.__init__", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.__init__", "kind": "function", "doc": "

\n", "signature": "(name: str, ip: str, ssid: str)"}, "three.MF.V3.Descriptors.Network.Interface.name": {"fullname": "three.MF.V3.Descriptors.Network.Interface.name", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Network.Interface.ip": {"fullname": "three.MF.V3.Descriptors.Network.Interface.ip", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.ip", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"fullname": "three.MF.V3.Descriptors.Network.Interface.ssid", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project": {"fullname": "three.MF.V3.Descriptors.Project", "modulename": "three.MF.V3.Descriptors.Project", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project": {"fullname": "three.MF.V3.Descriptors.Project.Project", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project", "kind": "class", "doc": "

V3 project descriptor.

\n"}, "three.MF.V3.Descriptors.Project.Project.__init__": {"fullname": "three.MF.V3.Descriptors.Project.Project.__init__", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str,\tgroups: three.MF.V3.Descriptors.Project.Project.Group)"}, "three.MF.V3.Descriptors.Project.Project.Brief": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief", "kind": "class", "doc": "

V3 project brief descriptor.

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.__init__", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, name: str, size: int, modified: List[int] = None)"}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.index", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.name", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.size", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.modified", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.modified", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group", "kind": "class", "doc": "

V3 project scan group tree descriptor.

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.__init__", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None,\tscan: int = None,\tgroups: List[three.MF.V3.Descriptors.Project.Project.Group] = None)"}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.index", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.name", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.color", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.visible", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.visible", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.collapsed", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.collapsed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.rotation", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.translation", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.scan", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.scan", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.groups", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.index": {"fullname": "three.MF.V3.Descriptors.Project.Project.index", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.name": {"fullname": "three.MF.V3.Descriptors.Project.Project.name", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.groups": {"fullname": "three.MF.V3.Descriptors.Project.Project.groups", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions": {"fullname": "three.MF.V3.Descriptors.ProjectActions", "modulename": "three.MF.V3.Descriptors.ProjectActions", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction", "kind": "class", "doc": "

Descriptor for a project undo/redo action.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttask: str,\tproject: MF.V3.Descriptors.Project.Project = None,\tscans: List[three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan] = None)"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan", "kind": "class", "doc": "

Scan vertices removal/insertion metadata.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, vertices: int, triangles: int)"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.vertices", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.triangles", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.task", "kind": "variable", "doc": "

The updated project data after undo or redo.\nIf undefined, then there was no change to the project.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.project", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions", "kind": "class", "doc": "

Project undo and redo action descriptors.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions.__init__", "kind": "function", "doc": "

\n", "signature": "(undo: List[str] = None, redo: List[str] = None)"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions.undo", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions.redo", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices": {"fullname": "three.MF.V3.Descriptors.RemoveVertices", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices", "kind": "class", "doc": "

Descriptor a remove vertices task.

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: List[three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan] = None,\tgroups: MF.V3.Descriptors.Project.Project.Group = None)"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan", "kind": "class", "doc": "

Scan vertex and triangle removal metadata.

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, vertices: int, triangles: int)"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.vertices", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.triangles", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.scans", "kind": "variable", "doc": "

The updated project data after undo or redo.\nIf undefined, then there was no change to the project.

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData": {"fullname": "three.MF.V3.Descriptors.ScanData", "modulename": "three.MF.V3.Descriptors.ScanData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData", "kind": "class", "doc": "

Scan data descriptor.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.__init__", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str,\tbuffers: List[three.MF.V3.Descriptors.ScanData.ScanData.Buffer] = None,\tmean: List[float] = None,\tstddev: List[float] = None,\taxisAlignedBoundingBox: List[float] = None)"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer", "kind": "class", "doc": "

Scan buffer descriptor.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tstride: int,\tcomponents: List[three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component] = None)"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component", "kind": "class", "doc": "

Scan buffer component descriptor.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type,\tsize: int,\toffset: int,\tnormalized: bool)"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type", "kind": "class", "doc": "

Scan buffer component types.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Position", "kind": "variable", "doc": "

\n", "default_value": "<Type.Position: 'Position'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Normal", "kind": "variable", "doc": "

\n", "default_value": "<Type.Normal: 'Normal'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Color", "kind": "variable", "doc": "

\n", "default_value": "<Type.Color: 'Color'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.UV", "kind": "variable", "doc": "

\n", "default_value": "<Type.UV: 'UV'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Quality", "kind": "variable", "doc": "

\n", "default_value": "<Type.Quality: 'Quality'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Triangle", "kind": "variable", "doc": "

\n", "default_value": "<Type.Triangle: 'Triangle'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Texture", "kind": "variable", "doc": "

\n", "default_value": "<Type.Texture: 'Texture'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.size", "kind": "variable", "doc": "

Scan buffer component offset.\nThis is the starting element for this component at every stride of the buffer.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.offset", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.normalized", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.stride", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.components", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.index", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.name", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.buffers", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.buffers", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.mean", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.mean", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.stddev", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.stddev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.axisAlignedBoundingBox", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings": {"fullname": "three.MF.V3.Descriptors.Settings", "modulename": "three.MF.V3.Descriptors.Settings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced", "kind": "class", "doc": "

Advanced settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcapture: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture,\tsampling: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling,\tedgeDetection: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection,\tphaseFilter: three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter,\tadaptiveSampling: three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling,\tnormalEstimation: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation,\toutlierRemoval: three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval,\tremesh: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh,\tcamera: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera,\tturntable: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use", "kind": "class", "doc": "

Use advanced settings.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture", "kind": "class", "doc": "

Capture settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\thorizontalFrequencies: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies,\tverticalFrequencies: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmin: int,\tmax: int,\tvalue: List[int] = None,\tdefault: List[int] = None)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmin: int,\tmax: int,\tvalue: List[int] = None,\tdefault: List[int] = None)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.horizontalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.verticalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling", "kind": "class", "doc": "

Sampling settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tprojectorSampleRate: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate,\timageSampleRate: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.projectorSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.imageSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection", "kind": "class", "doc": "

Edge detection settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tthreshold: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold,\tlaplacianKernelRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius,\tgaussianBlurRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius,\tgaussianBlurStdDev: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev,\tmaximumWidthForProcessing: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.threshold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.laplacianKernelRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.maximumWidthForProcessing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter", "kind": "class", "doc": "

Phase filter settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tkernelRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius,\tspatialWeightStdDev: three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.kernelRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.spatialWeightStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling", "kind": "class", "doc": "

Adaptive sampling settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\ttype: three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type,\trate: three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type,\tdefault: MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.rate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation", "kind": "class", "doc": "

Normal estimation settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tmethod: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method,\tmaximumNeighbourCount: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount,\tmaximumNeighbourRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius,\tuseMaximumNeighbourCount: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount,\tuseMaximumNeighbourRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method,\tdefault: MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval", "kind": "class", "doc": "

Outlier removal settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tneighbourCount: three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount,\tneighbourRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh", "kind": "class", "doc": "

Remesh settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tvoxelSize: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize,\tdepth: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth,\tscale: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale,\tlinearInterpolation: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.voxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.depth", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.linearInterpolation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera", "kind": "class", "doc": "

Camera settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuseContinuousExposureValues: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues", "kind": "class", "doc": "

Use continuous exposure values settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.useContinuousExposureValues", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable", "kind": "class", "doc": "

Turntable settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\trampAngle: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle,\tpointClippingRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius,\tpointClippingMinHeight: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight,\tpointClippingMaxHeight: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle", "kind": "class", "doc": "

The angle in degrees to slow down the turntable at the end of a rotation.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.rampAngle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMinHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMaxHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.sampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.edgeDetection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.phaseFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.adaptiveSampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.normalEstimation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.outlierRemoval", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.remesh", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera": {"fullname": "three.MF.V3.Descriptors.Settings.Camera", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera", "kind": "class", "doc": "

Camera settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tautoExposure: three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure,\texposure: three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure,\tanalogGain: three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain,\tdigitalGain: three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain,\tfocus: three.MF.V3.Descriptors.Settings.Camera.Camera.Focus)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure", "kind": "class", "doc": "

Auto exposure.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure", "kind": "class", "doc": "

Exposure.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain", "kind": "class", "doc": "

Analog gain.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain", "kind": "class", "doc": "

Digital gain.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus", "kind": "class", "doc": "

Focus settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value,\tbox: three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value", "kind": "class", "doc": "

Focus value.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmin: int,\tmax: int,\tvalue: List[int] = None,\tdefault: List[int] = None)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box", "kind": "class", "doc": "

Auto focus box.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: List[MF.V3.Settings.Rectangle.Rectangle] = None,\tdefault: List[MF.V3.Settings.Rectangle.Rectangle] = None)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.box", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.autoExposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.exposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.analogGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.digitalGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.focus", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture", "kind": "class", "doc": "

Capture settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Descriptors.Settings.Capture.Capture.Quality,\ttexture: three.MF.V3.Descriptors.Settings.Capture.Capture.Texture,\tblendCount: three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount,\thorizontalBlendFrequency: three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency,\tverticalBlendFrequency: three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality", "kind": "class", "doc": "

Capture quality preset.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Quality.Quality,\tdefault: MF.V3.Settings.Quality.Quality)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture", "kind": "class", "doc": "

Capture texture.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount", "kind": "class", "doc": "

Capture image blend count for noise reduction.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency", "kind": "class", "doc": "

The starting frequency for which multiple capture images are blended.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.quality", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.texture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.blendCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.horizontalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.verticalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n": {"fullname": "three.MF.V3.Descriptors.Settings.I18n", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n", "kind": "class", "doc": "

I18n language settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.__init__", "kind": "function", "doc": "

\n", "signature": "(language: three.MF.V3.Descriptors.Settings.I18n.I18n.Language)"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language", "kind": "class", "doc": "

Language settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.I18n.I18n.Language,\tdefault: MF.V3.Settings.I18n.I18n.Language)"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.language", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.language", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector": {"fullname": "three.MF.V3.Descriptors.Settings.Projector", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector", "kind": "class", "doc": "

Projector settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.__init__", "kind": "function", "doc": "

\n", "signature": "(\tbrightness: three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness,\ton: three.MF.V3.Descriptors.Settings.Projector.Projector.On)"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness", "kind": "class", "doc": "

Projector brightness.

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On", "kind": "class", "doc": "

Projector on/off.

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.brightness", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.on", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.on", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner", "kind": "class", "doc": "

Scanner settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.__init__", "kind": "function", "doc": "

\n", "signature": "(\tadvanced: MF.V3.Descriptors.Settings.Advanced.Advanced,\tcamera: MF.V3.Descriptors.Settings.Camera.Camera,\tcapture: MF.V3.Descriptors.Settings.Capture.Capture,\tprojector: MF.V3.Descriptors.Settings.Projector.Projector,\ti18n: MF.V3.Descriptors.Settings.I18n.I18n,\tstyle: MF.V3.Descriptors.Settings.Style.Style,\tturntable: MF.V3.Descriptors.Settings.Turntable.Turntable,\ttutorials: MF.V3.Descriptors.Settings.Tutorials.Tutorials,\tviewer: MF.V3.Descriptors.Settings.Viewer.Viewer,\tsoftware: MF.V3.Descriptors.Settings.Software.Software)"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.advanced", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.projector", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.i18n", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.style", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.tutorials", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.viewer", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.software", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software": {"fullname": "three.MF.V3.Descriptors.Settings.Software", "modulename": "three.MF.V3.Descriptors.Settings.Software", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software", "kind": "class", "doc": "

Software settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.__init__", "kind": "function", "doc": "

\n", "signature": "(\tupdateMajor: three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor)"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor", "kind": "class", "doc": "

Enable major version updates which can have breaking API changes.

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.updateMajor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style": {"fullname": "three.MF.V3.Descriptors.Settings.Style", "modulename": "three.MF.V3.Descriptors.Settings.Style", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style", "kind": "class", "doc": "

Style settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.__init__", "kind": "function", "doc": "

\n", "signature": "(theme: three.MF.V3.Descriptors.Settings.Style.Style.Theme)"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme", "kind": "class", "doc": "

Theme settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Style.Style.Theme,\tdefault: MF.V3.Settings.Style.Style.Theme)"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.theme", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.theme", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable", "kind": "class", "doc": "

Turntable settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans,\tsweep: three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep,\tuse: three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans", "kind": "class", "doc": "

The number of turntable scans.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep", "kind": "class", "doc": "

Turntable angle sweep in degrees.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use", "kind": "class", "doc": "

Use the turntable.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.sweep", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials", "kind": "class", "doc": "

Tutorials settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.__init__", "kind": "function", "doc": "

\n", "signature": "(\tshow: three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show,\tviewed: three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show", "kind": "class", "doc": "

Tutorials to show.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed", "kind": "class", "doc": "

Viewed tutorials.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.__init__", "kind": "function", "doc": "

\n", "signature": "(\tpages: three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages", "kind": "class", "doc": "

Viewed tutorials pages.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages.__init__", "kind": "function", "doc": "

\n", "signature": "(value: List[str] = None, default: List[str] = None)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.pages", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.show", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.viewed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer", "kind": "class", "doc": "

3D Viewer settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttextureOpacity: three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity)"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity", "kind": "class", "doc": "

Texture opacity.

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.textureOpacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software": {"fullname": "three.MF.V3.Descriptors.Software", "modulename": "three.MF.V3.Descriptors.Software", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software": {"fullname": "three.MF.V3.Descriptors.Software.Software", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software", "kind": "class", "doc": "

Software descriptor.

\n"}, "three.MF.V3.Descriptors.Software.Software.__init__": {"fullname": "three.MF.V3.Descriptors.Software.Software.__init__", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.__init__", "kind": "function", "doc": "

\n", "signature": "(\tfrontend: three.MF.V3.Descriptors.Software.Software.Package,\tserver: three.MF.V3.Descriptors.Software.Software.Package)"}, "three.MF.V3.Descriptors.Software.Software.Package": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package", "kind": "class", "doc": "

Software package descriptor.

\n"}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.__init__", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.__init__", "kind": "function", "doc": "

\n", "signature": "(installed: str, update: str, changelog: str)"}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.installed", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.installed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.update", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.update", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.changelog", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.changelog", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.frontend": {"fullname": "three.MF.V3.Descriptors.Software.Software.frontend", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.frontend", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.server": {"fullname": "three.MF.V3.Descriptors.Software.Software.server", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.server", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System": {"fullname": "three.MF.V3.Descriptors.System", "modulename": "three.MF.V3.Descriptors.System", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System": {"fullname": "three.MF.V3.Descriptors.System.System", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System", "kind": "class", "doc": "

System descriptor.

\n"}, "three.MF.V3.Descriptors.System.System.__init__": {"fullname": "three.MF.V3.Descriptors.System.System.__init__", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.__init__", "kind": "function", "doc": "

\n", "signature": "(\tserialNumber: str,\tdiskSpace: three.MF.V3.Descriptors.System.System.DiskSpace,\tpublicKey: str)"}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace", "kind": "class", "doc": "

Disk space descriptor.

\n"}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace.__init__", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace.__init__", "kind": "function", "doc": "

\n", "signature": "(capacity: int, available: int)"}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace.capacity", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace.capacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace.available", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace.available", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.serialNumber": {"fullname": "three.MF.V3.Descriptors.System.System.serialNumber", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.serialNumber", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.diskSpace": {"fullname": "three.MF.V3.Descriptors.System.System.diskSpace", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.diskSpace", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.publicKey": {"fullname": "three.MF.V3.Descriptors.System.System.publicKey", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.publicKey", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Transform": {"fullname": "three.MF.V3.Descriptors.Transform", "modulename": "three.MF.V3.Descriptors.Transform", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Transform.Transform": {"fullname": "three.MF.V3.Descriptors.Transform.Transform", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform", "kind": "class", "doc": "

V3 transform descriptor.

\n"}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"fullname": "three.MF.V3.Descriptors.Transform.Transform.__init__", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform.__init__", "kind": "function", "doc": "

Axis-angle rotation vector.\nThe direction of the vector is the rotation axis.\nThe magnitude of the vector is rotation angle in radians.

\n", "signature": "(rotation: List[float] = None, translation: List[float] = None)"}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"fullname": "three.MF.V3.Descriptors.Transform.Transform.rotation", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"fullname": "three.MF.V3.Descriptors.Transform.Transform.translation", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame": {"fullname": "three.MF.V3.Descriptors.VideoFrame", "modulename": "three.MF.V3.Descriptors.VideoFrame", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame", "kind": "class", "doc": "

Video frame descriptor.

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcodec: MF.V3.Settings.Video.Video.Codec,\tformat: MF.V3.Settings.Video.Video.Format,\twidth: int,\theight: int,\tstep: int,\tnumber: int,\ttimestamp: int,\tduration: int,\tcalibrationCard: MF.V3.Descriptors.Calibration.DetectedCard)"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.number", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.timestamp", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.duration", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.calibrationCard", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi": {"fullname": "three.MF.V3.Descriptors.Wifi", "modulename": "three.MF.V3.Descriptors.Wifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi", "kind": "class", "doc": "

The wifi descriptor.

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.__init__", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.__init__", "kind": "function", "doc": "

\n", "signature": "(\tssid: str,\tnetworks: List[three.MF.V3.Descriptors.Wifi.Wifi.Network] = None)"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network", "kind": "class", "doc": "

The wifi network descriptor.

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.__init__", "kind": "function", "doc": "

\n", "signature": "(\tssid: str,\tisPublic: bool,\tisActive: bool,\tpassword: str = None,\tquality: int = None)"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.isPublic", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.isActive", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.password", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.password", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.ssid", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.networks", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.networks", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings": {"fullname": "three.MF.V3.Settings", "modulename": "three.MF.V3.Settings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Advanced": {"fullname": "three.MF.V3.Settings.Advanced", "modulename": "three.MF.V3.Settings.Advanced", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced": {"fullname": "three.MF.V3.Settings.Advanced.Advanced", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced", "kind": "class", "doc": "

Advanced settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcapture: three.MF.V3.Settings.Advanced.Advanced.Capture = None,\tsampling: three.MF.V3.Settings.Advanced.Advanced.Sampling = None,\tedgeDetection: three.MF.V3.Settings.Advanced.Advanced.EdgeDetection = None,\tphaseFilter: three.MF.V3.Settings.Advanced.Advanced.PhaseFilter = None,\tadaptiveSampling: three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling = None,\tnormalEstimation: three.MF.V3.Settings.Advanced.Advanced.NormalEstimation = None,\toutlierRemoval: three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval = None,\tremesh: three.MF.V3.Settings.Advanced.Advanced.Remesh = None,\tcamera: three.MF.V3.Settings.Advanced.Advanced.Camera = None,\tturntable: three.MF.V3.Settings.Advanced.Advanced.Turntable = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture", "kind": "class", "doc": "

Capture settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\thorizontalFrequencies: List[int] = None,\tverticalFrequencies: List[int] = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.horizontalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.verticalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling", "kind": "class", "doc": "

Sampling settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\tprojectorSampleRate: float = None,\timageSampleRate: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.projectorSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.imageSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection", "kind": "class", "doc": "

Edge detection settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tthreshold: float = None,\tlaplacianKernelRadius: int = None,\tgaussianBlurRadius: int = None,\tgaussianBlurStdDev: float = None,\tmaximumWidthForProcessing: int = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.threshold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.laplacianKernelRadius", "kind": "variable", "doc": "

Gaussian blur kernel radius. (Optional) To disable, set to 0.

\n\n

The phase images can optionally blurred before taking the Laplacian to reduce noise.\nHowever as a result, the detected edges are wider.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurRadius", "kind": "variable", "doc": "

Gaussian blur kernel standard deviation. This parameter is ignored if\ngaussianBlurSize is zero.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurStdDev", "kind": "variable", "doc": "

The maximum image width for processing. (Optional) To disable, set to 0.

\n\n

If this value is greater than zero, the phase images are resized to the maximum\nwidth prior to computing the Laplacian and the the detected edges are then upsampled to the\noriginal size.

\n\n

This would be done to speed up processing or to detect edges on a larger scale.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.maximumWidthForProcessing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter", "kind": "class", "doc": "

Phase filter settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.__init__", "kind": "function", "doc": "

The filter kernel radius.

\n\n

A neighboring value must be within this radius to be included in the filter.\nIf the kernel radius is set to zero, the phase filtering is disabled.

\n", "signature": "(\tkernelRadius: int = None,\tspatialWeightStdDev: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.kernelRadius", "kind": "variable", "doc": "

The standard deviation of the spatial weights.

\n\n

The weight of a neighboring value is \f$ exp(-(r/s)^2) \f$ where \f$ r \f$\nis the distance to the central value and \f$ s \f$ is the spatial weight\nstandard deviation.

\n\n

If the spatial weight standard deviation is set to zero, all the spatial\nweights are uniformly set to 1.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.spatialWeightStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling", "kind": "class", "doc": "

Adaptive sampling settings

\n\n

Adaptive sampling will downsample points in regions of low detail\nand keep points in regions of high detail.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\trate: float,\ttype: MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.rate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping", "kind": "class", "doc": "

Point32 clipping settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type = None,\ttransform: List[float] = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.transform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation", "kind": "class", "doc": "

Normal estimation settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method = None,\tmaximumNeighbourCount: int = None,\tmaximumNeighbourRadius: float = None,\tuseMaximumNeighbourCount: bool = None,\tuseMaximumNeighbourRadius: bool = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.method", "kind": "variable", "doc": "

Maximum number of nearest neighbors used to compute the normal.\nThis value is only used with the NORMAL_OPEN3D method.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval", "kind": "class", "doc": "

Radius outlier removal settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.__init__", "kind": "function", "doc": "

\n", "signature": "(\tneighbourCount: int = None,\tneighbourRadius: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh", "kind": "class", "doc": "

Remesh settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: MF.V3.Settings.Merge.Merge.Quality = None,\tvoxelSize: float = None,\tdepth: int = None,\tscale: float = None,\tlinearInterpolation: bool = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.voxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.depth", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.linearInterpolation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Camera", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Camera", "kind": "class", "doc": "

Camera settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(useContinuousExposureValues: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Camera.useContinuousExposureValues", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable", "kind": "class", "doc": "

Turntable settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\trampAngle: int = None,\tpointClippingRadius: float = None,\tpointClippingMinHeight: float = None,\tpointClippingMaxHeight: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.rampAngle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMinHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMaxHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.capture", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.sampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.sampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.edgeDetection", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.edgeDetection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.phaseFilter", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.phaseFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.adaptiveSampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.normalEstimation", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.normalEstimation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.outlierRemoval", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.remesh", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.remesh", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.camera", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.turntable", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align": {"fullname": "three.MF.V3.Settings.Align", "modulename": "three.MF.V3.Settings.Align", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align": {"fullname": "three.MF.V3.Settings.Align.Align", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align", "kind": "class", "doc": "

Alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsource: int,\ttarget: int,\trough: three.MF.V3.Settings.Align.Align.Rough = None,\tfine: three.MF.V3.Settings.Align.Align.Fine = None)"}, "three.MF.V3.Settings.Align.Align.Points": {"fullname": "three.MF.V3.Settings.Align.Align.Points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points", "kind": "class", "doc": "

Point pair alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Points.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.__init__", "kind": "function", "doc": "

\n", "signature": "(\tpoints: List[float] = None,\tabsoluteError: float = None,\trelativeError: float = None,\tuseAllPoints: bool = None)"}, "three.MF.V3.Settings.Align.Align.Points.points": {"fullname": "three.MF.V3.Settings.Align.Align.Points.points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.points", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"fullname": "three.MF.V3.Settings.Align.Align.Points.absoluteError", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.absoluteError", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"fullname": "three.MF.V3.Settings.Align.Align.Points.relativeError", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.relativeError", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"fullname": "three.MF.V3.Settings.Align.Align.Points.useAllPoints", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.useAllPoints", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac", "kind": "class", "doc": "

Ransac alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.__init__", "kind": "function", "doc": "

\n", "signature": "(\tdownsampleVoxelSize: float = None,\tmaximumFeatureRadius: float = None,\tmaximumFeaturePointCount: int = None,\tmaximumMatchDistance: float = None,\tminimumMatchSimilarity: float = None,\tmutualFilter: bool = None)"}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.downsampleVoxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.maximumFeatureRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.maximumFeaturePointCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.maximumMatchDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.minimumMatchSimilarity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.mutualFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.ICP": {"fullname": "three.MF.V3.Settings.Align.Align.ICP", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.ICP", "kind": "class", "doc": "

Iterative closest point alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.ICP.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.ICP.__init__", "kind": "function", "doc": "

\n", "signature": "(matchDistance: float)"}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"fullname": "three.MF.V3.Settings.Align.Align.ICP.matchDistance", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.ICP.matchDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Rough": {"fullname": "three.MF.V3.Settings.Align.Align.Rough", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough", "kind": "class", "doc": "

Rough alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Align.Align.Rough.Method,\transac: three.MF.V3.Settings.Align.Align.Ransac = None,\tpoints: three.MF.V3.Settings.Align.Align.Points = None)"}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method", "kind": "class", "doc": "

Rough alignment methods.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.Empty", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Method.Empty: 'None'>"}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.FastGlobal", "kind": "variable", "doc": "

\n", "default_value": "<Method.FastGlobal: 'FastGlobal'>"}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.Ransac", "kind": "variable", "doc": "

\n", "default_value": "<Method.Ransac: 'Ransac'>"}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.Points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.Points", "kind": "variable", "doc": "

\n", "default_value": "<Method.Points: 'Points'>"}, "three.MF.V3.Settings.Align.Align.Rough.method": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.ransac", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.ransac", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Rough.points": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.points", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine": {"fullname": "three.MF.V3.Settings.Align.Align.Fine", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine", "kind": "class", "doc": "

Fine alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Align.Align.Fine.Method,\ticp: three.MF.V3.Settings.Align.Align.ICP = None,\tinitialTransform: three.MF.V3.Settings.Align.Align.Fine.Transform = None)"}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Method", "kind": "class", "doc": "

Fine alignment methods.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Method.Empty", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Method.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Method.Empty: 'None'>"}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Method.ICP", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Method.ICP", "kind": "variable", "doc": "

\n", "default_value": "<Method.ICP: 'ICP'>"}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform", "kind": "class", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform.__init__", "kind": "function", "doc": "

\n", "signature": "(rotation: List[float] = None, translation: List[float] = None)"}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform.translation", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.method": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.icp", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.icp", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.initialTransform", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.initialTransform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.source": {"fullname": "three.MF.V3.Settings.Align.Align.source", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.source", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.target": {"fullname": "three.MF.V3.Settings.Align.Align.target", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.target", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.rough": {"fullname": "three.MF.V3.Settings.Align.Align.rough", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.rough", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.fine": {"fullname": "three.MF.V3.Settings.Align.Align.fine", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.fine", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus": {"fullname": "three.MF.V3.Settings.AutoFocus", "modulename": "three.MF.V3.Settings.AutoFocus", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus", "kind": "class", "doc": "

Auto focus settings.

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.__init__", "kind": "function", "doc": "

Apply the final focus value to both cameras.\nThis setting is ignored if more than one camera is selected.

\n", "signature": "(\tapplyAll: bool,\tcameras: List[three.MF.V3.Settings.AutoFocus.AutoFocus.Camera] = None)"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera", "kind": "class", "doc": "

Auto focus camera settings.

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, box: MF.V3.Settings.Rectangle.Rectangle = None)"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera.box", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.applyAll", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.cameras", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.BoundingBox": {"fullname": "three.MF.V3.Settings.BoundingBox", "modulename": "three.MF.V3.Settings.BoundingBox", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox", "kind": "class", "doc": "

Bounding box settings.

\n"}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection,\taxisAligned: bool)"}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox.selection", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox.selection", "kind": "variable", "doc": "

If true, align the bounding box with the world axes.\nOtherwise orient the bounding box with the scans.

\n"}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox.axisAligned", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera": {"fullname": "three.MF.V3.Settings.Camera", "modulename": "three.MF.V3.Settings.Camera", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera": {"fullname": "three.MF.V3.Settings.Camera.Camera", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera", "kind": "class", "doc": "

Camera settings.

\n"}, "three.MF.V3.Settings.Camera.Camera.__init__": {"fullname": "three.MF.V3.Settings.Camera.Camera.__init__", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: List[int] = None,\tautoExposure: bool = None,\texposure: int = None,\tanalogGain: float = None,\tdigitalGain: int = None,\tfocus: int = None)"}, "three.MF.V3.Settings.Camera.Camera.selection": {"fullname": "three.MF.V3.Settings.Camera.Camera.selection", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"fullname": "three.MF.V3.Settings.Camera.Camera.autoExposure", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.autoExposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.exposure": {"fullname": "three.MF.V3.Settings.Camera.Camera.exposure", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.exposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"fullname": "three.MF.V3.Settings.Camera.Camera.analogGain", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.analogGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"fullname": "three.MF.V3.Settings.Camera.Camera.digitalGain", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.digitalGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.focus": {"fullname": "three.MF.V3.Settings.Camera.Camera.focus", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture": {"fullname": "three.MF.V3.Settings.Capture", "modulename": "three.MF.V3.Settings.Capture", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture": {"fullname": "three.MF.V3.Settings.Capture.Capture", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture", "kind": "class", "doc": "

Capture settings.

\n"}, "three.MF.V3.Settings.Capture.Capture.__init__": {"fullname": "three.MF.V3.Settings.Capture.Capture.__init__", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: MF.V3.Settings.Quality.Quality = None,\ttexture: bool = None,\tcalibrationCard: bool = None,\thorizontalFrequencies: List[int] = None,\tverticalFrequencies: List[int] = None,\tblendCount: int = None,\thorizontalBlendFrequency: int = None,\tverticalBlendFrequency: int = None)"}, "three.MF.V3.Settings.Capture.Capture.quality": {"fullname": "three.MF.V3.Settings.Capture.Capture.quality", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.texture": {"fullname": "three.MF.V3.Settings.Capture.Capture.texture", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"fullname": "three.MF.V3.Settings.Capture.Capture.calibrationCard", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.calibrationCard", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"fullname": "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.horizontalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"fullname": "three.MF.V3.Settings.Capture.Capture.verticalFrequencies", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.verticalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"fullname": "three.MF.V3.Settings.Capture.Capture.blendCount", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.blendCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"fullname": "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.horizontalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"fullname": "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.verticalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage": {"fullname": "three.MF.V3.Settings.CaptureImage", "modulename": "three.MF.V3.Settings.CaptureImage", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage", "kind": "class", "doc": "

Capture image settings.

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: List[int] = None,\tcodec: three.MF.V3.Settings.CaptureImage.CaptureImage.Codec = None,\tgrayscale: bool = None)"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec", "kind": "class", "doc": "

Image codecs.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.jpg", "kind": "variable", "doc": "

\n", "default_value": "<Codec.jpg: 'jpg'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.png", "kind": "variable", "doc": "

\n", "default_value": "<Codec.png: 'png'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.bmp", "kind": "variable", "doc": "

\n", "default_value": "<Codec.bmp: 'bmp'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.raw", "kind": "variable", "doc": "

\n", "default_value": "<Codec.raw: 'raw'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.selection", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.codec", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.grayscale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CopyGroups": {"fullname": "three.MF.V3.Settings.CopyGroups", "modulename": "three.MF.V3.Settings.CopyGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups", "kind": "class", "doc": "

Copy scan groups settings.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsourceIndexes: List[int] = None,\ttargetIndex: int = None,\tchildPosition: int = None,\tnameSuffix: str = None,\tenumerate: bool = None)"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.sourceIndexes", "kind": "variable", "doc": "

The index of the group into which the source groups are copied.\nIf unspecified the copied groups are inserted after their respective source groups within the same parent group.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.targetIndex", "kind": "variable", "doc": "

The position among the target group's children where the copied groups are inserted.\nIf unspecified the copied groups are appended to the end of the target group's children.\nIgnored if the targetIndex is unspecified or specified but does not exist.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.childPosition", "kind": "variable", "doc": "

Optional name suffix to append to the copied group names.\nIf unspecified the copied group names are unchanged.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.nameSuffix", "kind": "variable", "doc": "

Append a copy index the copied group names. e.g. (\"name-2\", \"name-3\"). Default is true.\nIf a name suffix is specified then the first copy of each source group is not enumerated,\nbut subsequent copies are.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.enumerate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CopyProject": {"fullname": "three.MF.V3.Settings.CopyProject", "modulename": "three.MF.V3.Settings.CopyProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.CopyProject.CopyProject": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject", "kind": "class", "doc": "

Copy project settings.

\n"}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject.__init__", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, copyName: str = None)"}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject.index", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject.copyName", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject.copyName", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export": {"fullname": "three.MF.V3.Settings.Export", "modulename": "three.MF.V3.Settings.Export", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export": {"fullname": "three.MF.V3.Settings.Export.Export", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export", "kind": "class", "doc": "

Export settings.

\n"}, "three.MF.V3.Settings.Export.Export.__init__": {"fullname": "three.MF.V3.Settings.Export.Export.__init__", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: three.MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: three.MF.V3.Settings.Export.Export.Color = None)"}, "three.MF.V3.Settings.Export.Export.Format": {"fullname": "three.MF.V3.Settings.Export.Export.Format", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format", "kind": "class", "doc": "

Scan export formats.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Export.Export.Format.ply": {"fullname": "three.MF.V3.Settings.Export.Export.Format.ply", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.ply", "kind": "variable", "doc": "

\n", "default_value": "<Format.ply: 'ply'>"}, "three.MF.V3.Settings.Export.Export.Format.dae": {"fullname": "three.MF.V3.Settings.Export.Export.Format.dae", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.dae", "kind": "variable", "doc": "

\n", "default_value": "<Format.dae: 'dae'>"}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"fullname": "three.MF.V3.Settings.Export.Export.Format.fbx", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.fbx", "kind": "variable", "doc": "

\n", "default_value": "<Format.fbx: 'fbx'>"}, "three.MF.V3.Settings.Export.Export.Format.glb": {"fullname": "three.MF.V3.Settings.Export.Export.Format.glb", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.glb", "kind": "variable", "doc": "

\n", "default_value": "<Format.glb: 'glb'>"}, "three.MF.V3.Settings.Export.Export.Format.obj": {"fullname": "three.MF.V3.Settings.Export.Export.Format.obj", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.obj", "kind": "variable", "doc": "

\n", "default_value": "<Format.obj: 'obj'>"}, "three.MF.V3.Settings.Export.Export.Format.stl": {"fullname": "three.MF.V3.Settings.Export.Export.Format.stl", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.stl", "kind": "variable", "doc": "

\n", "default_value": "<Format.stl: 'stl'>"}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"fullname": "three.MF.V3.Settings.Export.Export.Format.xyz", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.xyz", "kind": "variable", "doc": "

\n", "default_value": "<Format.xyz: 'xyz'>"}, "three.MF.V3.Settings.Export.Export.Color": {"fullname": "three.MF.V3.Settings.Export.Export.Color", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color", "kind": "class", "doc": "

Settings for mapping the vertex quality to a vertex color.\nThe specific meaning of 'quality' depends on the broader context.\nIn the case heat maps, the quality is the point-to-mesh distance of the vertex.

\n"}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"fullname": "three.MF.V3.Settings.Export.Export.Color.__init__", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscale: float = None,\toffset: float = None,\tmin: float = None,\tmax: float = None)"}, "three.MF.V3.Settings.Export.Export.Color.scale": {"fullname": "three.MF.V3.Settings.Export.Export.Color.scale", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.Color.offset": {"fullname": "three.MF.V3.Settings.Export.Export.Color.offset", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.offset", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.Color.min": {"fullname": "three.MF.V3.Settings.Export.Export.Color.min", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.Color.max": {"fullname": "three.MF.V3.Settings.Export.Export.Color.max", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.selection": {"fullname": "three.MF.V3.Settings.Export.Export.selection", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.texture": {"fullname": "three.MF.V3.Settings.Export.Export.texture", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.merge": {"fullname": "three.MF.V3.Settings.Export.Export.merge", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.merge", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.format": {"fullname": "three.MF.V3.Settings.Export.Export.format", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.scale": {"fullname": "three.MF.V3.Settings.Export.Export.scale", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.color": {"fullname": "three.MF.V3.Settings.Export.Export.color", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group": {"fullname": "three.MF.V3.Settings.Group", "modulename": "three.MF.V3.Settings.Group", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group": {"fullname": "three.MF.V3.Settings.Group.Group", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group", "kind": "class", "doc": "

Scan group settings.

\n"}, "three.MF.V3.Settings.Group.Group.__init__": {"fullname": "three.MF.V3.Settings.Group.Group.__init__", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None)"}, "three.MF.V3.Settings.Group.Group.index": {"fullname": "three.MF.V3.Settings.Group.Group.index", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.name": {"fullname": "three.MF.V3.Settings.Group.Group.name", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.color": {"fullname": "three.MF.V3.Settings.Group.Group.color", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.visible": {"fullname": "three.MF.V3.Settings.Group.Group.visible", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.visible", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.collapsed": {"fullname": "three.MF.V3.Settings.Group.Group.collapsed", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.collapsed", "kind": "variable", "doc": "

Axis-angle rotation vector.\nThe direction of the vector is the rotation axis.\nThe magnitude of the vector is rotation angle in radians.

\n"}, "three.MF.V3.Settings.Group.Group.rotation": {"fullname": "three.MF.V3.Settings.Group.Group.rotation", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.translation": {"fullname": "three.MF.V3.Settings.Group.Group.translation", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap": {"fullname": "three.MF.V3.Settings.HeatMap", "modulename": "three.MF.V3.Settings.HeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap", "kind": "class", "doc": "

Scan heat map settings.

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.__init__", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsources: List[int] = None,\ttargets: List[int] = None,\toutlierDistance: float = None)"}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.sources", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.sources", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.targets", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.targets", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.outlierDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.I18n": {"fullname": "three.MF.V3.Settings.I18n", "modulename": "three.MF.V3.Settings.I18n", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.I18n.I18n": {"fullname": "three.MF.V3.Settings.I18n.I18n", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n", "kind": "class", "doc": "

I18n language settings.

\n"}, "three.MF.V3.Settings.I18n.I18n.__init__": {"fullname": "three.MF.V3.Settings.I18n.I18n.__init__", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.__init__", "kind": "function", "doc": "

\n", "signature": "(language: three.MF.V3.Settings.I18n.I18n.Language = None)"}, "three.MF.V3.Settings.I18n.I18n.Language": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language", "kind": "class", "doc": "

Available languages.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.en", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.en", "kind": "variable", "doc": "

\n", "default_value": "<Language.en: 'en'>"}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.fr", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.fr", "kind": "variable", "doc": "

\n", "default_value": "<Language.fr: 'fr'>"}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.de", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.de", "kind": "variable", "doc": "

\n", "default_value": "<Language.de: 'de'>"}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.zh", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.zh", "kind": "variable", "doc": "

\n", "default_value": "<Language.zh: 'zh'>"}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.ja", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.ja", "kind": "variable", "doc": "

\n", "default_value": "<Language.ja: 'ja'>"}, "three.MF.V3.Settings.I18n.I18n.language": {"fullname": "three.MF.V3.Settings.I18n.I18n.language", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.language", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import": {"fullname": "three.MF.V3.Settings.Import", "modulename": "three.MF.V3.Settings.Import", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import": {"fullname": "three.MF.V3.Settings.Import.Import", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import", "kind": "class", "doc": "

Import mesh settings.

\n"}, "three.MF.V3.Settings.Import.Import.__init__": {"fullname": "three.MF.V3.Settings.Import.Import.__init__", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.__init__", "kind": "function", "doc": "

\n", "signature": "(\tname: str = None,\tscale: float = None,\tunit: three.MF.V3.Settings.Import.Import.Unit = None,\tcenter: bool = None,\tgroupIndex: int = None)"}, "three.MF.V3.Settings.Import.Import.Unit": {"fullname": "three.MF.V3.Settings.Import.Import.Unit", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit", "kind": "class", "doc": "

Unit of imported mesh positions.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Millimeter", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Millimeter", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Millimeter: 'Millimeter'>"}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Centimeter", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Centimeter", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Centimeter: 'Centimeter'>"}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Meter", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Meter", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Meter: 'Meter'>"}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Inch", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Inch", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Inch: 'Inch'>"}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Foot", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Foot", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Foot: 'Foot'>"}, "three.MF.V3.Settings.Import.Import.name": {"fullname": "three.MF.V3.Settings.Import.Import.name", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.scale": {"fullname": "three.MF.V3.Settings.Import.Import.scale", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.unit": {"fullname": "three.MF.V3.Settings.Import.Import.unit", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.unit", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.center": {"fullname": "three.MF.V3.Settings.Import.Import.center", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.center", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.groupIndex": {"fullname": "three.MF.V3.Settings.Import.Import.groupIndex", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.groupIndex", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge": {"fullname": "three.MF.V3.Settings.Merge", "modulename": "three.MF.V3.Settings.Merge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge": {"fullname": "three.MF.V3.Settings.Merge.Merge", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge", "kind": "class", "doc": "

Scan merge settings.

\n"}, "three.MF.V3.Settings.Merge.Merge.__init__": {"fullname": "three.MF.V3.Settings.Merge.Merge.__init__", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\tremesh: three.MF.V3.Settings.Merge.Merge.Remesh = None,\tsimplify: three.MF.V3.Settings.Merge.Merge.Simplify = None,\ttexturize: bool = None)"}, "three.MF.V3.Settings.Merge.Merge.Quality": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality", "kind": "class", "doc": "

Remesh quality settings.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.VeryLow", "kind": "variable", "doc": "

\n", "default_value": "<Quality.VeryLow: 'VeryLow'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.Low", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.Low", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Low: 'Low'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.Medium", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.Medium", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Medium: 'Medium'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.High", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.High", "kind": "variable", "doc": "

\n", "default_value": "<Quality.High: 'High'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.VeryHigh", "kind": "variable", "doc": "

\n", "default_value": "<Quality.VeryHigh: 'VeryHigh'>"}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh", "kind": "class", "doc": "

Remesh settings.

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.__init__", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Settings.Merge.Merge.Quality = None,\tvoxelSize: float = None,\tdepth: int = None,\tscale: float = None,\tlinearInterpolation: bool = None)"}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.quality", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.voxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.depth", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.depth", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.scale", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.linearInterpolation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify", "kind": "class", "doc": "

Simplify settings.

\n"}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.__init__", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Merge.Merge.Simplify.Method = None,\tfaceCount: int = None)"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method", "kind": "class", "doc": "

Remesh method.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.QuadraticDecimation", "kind": "variable", "doc": "

\n", "default_value": "<Method.QuadraticDecimation: 'QuadraticDecimation'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.FlowTriangles", "kind": "variable", "doc": "

\n", "default_value": "<Method.FlowTriangles: 'FlowTriangles'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.FlowQuads", "kind": "variable", "doc": "

\n", "default_value": "<Method.FlowQuads: 'FlowQuads'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.FlowQuadDominant", "kind": "variable", "doc": "

\n", "default_value": "<Method.FlowQuadDominant: 'FlowQuadDominant'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.method", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.faceCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.selection": {"fullname": "three.MF.V3.Settings.Merge.Merge.selection", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.remesh": {"fullname": "three.MF.V3.Settings.Merge.Merge.remesh", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.remesh", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.simplify": {"fullname": "three.MF.V3.Settings.Merge.Merge.simplify", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.simplify", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.texturize": {"fullname": "three.MF.V3.Settings.Merge.Merge.texturize", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.texturize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup": {"fullname": "three.MF.V3.Settings.NewGroup", "modulename": "three.MF.V3.Settings.NewGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup", "kind": "class", "doc": "

Scan group settings.

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.__init__", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.__init__", "kind": "function", "doc": "

The index of the parent group in which the new group is created.\nIf unspecified the new group is added to the root of the group tree.

\n", "signature": "(\tparentIndex: int = None,\tbaseName: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None)"}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.parentIndex", "kind": "variable", "doc": "

Group base name.\nThe new group name will start with the base name followed by a unique index number chosen by the backend.

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.baseName", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.baseName", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.color", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.visible", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.visible", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.collapsed", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.collapsed", "kind": "variable", "doc": "

Group axis-angle rotation vector.\nThe direction of the vector is the rotation axis.\nThe magnitude of the vector is rotation angle in radians.

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.rotation", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.translation", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Project": {"fullname": "three.MF.V3.Settings.Project", "modulename": "three.MF.V3.Settings.Project", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Project.Project": {"fullname": "three.MF.V3.Settings.Project.Project", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project", "kind": "class", "doc": "

Project settings.

\n"}, "three.MF.V3.Settings.Project.Project.__init__": {"fullname": "three.MF.V3.Settings.Project.Project.__init__", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project.__init__", "kind": "function", "doc": "

The index identifying which project the settings applies to.\nIf undefined the current open project is used.

\n", "signature": "(index: int = None, name: str = None)"}, "three.MF.V3.Settings.Project.Project.index": {"fullname": "three.MF.V3.Settings.Project.Project.index", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Project.Project.name": {"fullname": "three.MF.V3.Settings.Project.Project.name", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector": {"fullname": "three.MF.V3.Settings.Projector", "modulename": "three.MF.V3.Settings.Projector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector": {"fullname": "three.MF.V3.Settings.Projector.Projector", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector", "kind": "class", "doc": "

Projector settings.

\n"}, "three.MF.V3.Settings.Projector.Projector.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.__init__", "kind": "function", "doc": "

\n", "signature": "(\ton: bool = None,\tbrightness: float = None,\tpattern: three.MF.V3.Settings.Projector.Projector.Pattern = None,\timage: three.MF.V3.Settings.Projector.Projector.Image = None,\tcolor: List[float] = None)"}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"fullname": "three.MF.V3.Settings.Projector.Projector.Orientation", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Orientation", "kind": "class", "doc": "

Pattern orientation.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"fullname": "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Orientation.Horizontal", "kind": "variable", "doc": "

\n", "default_value": "<Orientation.Horizontal: 'Horizontal'>"}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"fullname": "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Orientation.Vertical", "kind": "variable", "doc": "

\n", "default_value": "<Orientation.Vertical: 'Vertical'>"}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern", "kind": "class", "doc": "

Structured light pattern.

\n"}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.__init__", "kind": "function", "doc": "

\n", "signature": "(\torientation: three.MF.V3.Settings.Projector.Projector.Orientation,\tfrequency: int,\tphase: int)"}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.orientation", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.orientation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.frequency", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.frequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.phase", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.phase", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image", "kind": "class", "doc": "

Projector image settings

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsource: three.MF.V3.Settings.Projector.Projector.Image.Source,\ttarget: MF.V3.Settings.Rectangle.Rectangle)"}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source", "kind": "class", "doc": "

Image source.

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.__init__", "kind": "function", "doc": "

\n", "signature": "(\tformat: MF.V3.Settings.Video.Video.Format,\twidth: int,\theight: int,\tstep: int,\tfixAspectRatio: bool)"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.format", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.width", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.height", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.step", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.fixAspectRatio", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.source", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.source", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.target", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.target", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.on": {"fullname": "three.MF.V3.Settings.Projector.Projector.on", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.on", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.brightness": {"fullname": "three.MF.V3.Settings.Projector.Projector.brightness", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.brightness", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.pattern": {"fullname": "three.MF.V3.Settings.Projector.Projector.pattern", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.pattern", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.image": {"fullname": "three.MF.V3.Settings.Projector.Projector.image", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.image", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.color": {"fullname": "three.MF.V3.Settings.Projector.Projector.color", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Quality": {"fullname": "three.MF.V3.Settings.Quality", "modulename": "three.MF.V3.Settings.Quality", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Quality.Quality": {"fullname": "three.MF.V3.Settings.Quality.Quality", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality", "kind": "class", "doc": "

Capture quality settings.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Quality.Quality.Low": {"fullname": "three.MF.V3.Settings.Quality.Quality.Low", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality.Low", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Low: 'Low'>"}, "three.MF.V3.Settings.Quality.Quality.Medium": {"fullname": "three.MF.V3.Settings.Quality.Quality.Medium", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality.Medium", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Medium: 'Medium'>"}, "three.MF.V3.Settings.Quality.Quality.High": {"fullname": "three.MF.V3.Settings.Quality.Quality.High", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality.High", "kind": "variable", "doc": "

\n", "default_value": "<Quality.High: 'High'>"}, "three.MF.V3.Settings.Rectangle": {"fullname": "three.MF.V3.Settings.Rectangle", "modulename": "three.MF.V3.Settings.Rectangle", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle", "kind": "class", "doc": "

Rectangle settings.

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.__init__", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.__init__", "kind": "function", "doc": "

\n", "signature": "(x: int, y: int, width: int, height: int)"}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.x", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.x", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.y", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.y", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.width", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.height", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.RemoveVertices": {"fullname": "three.MF.V3.Settings.RemoveVertices", "modulename": "three.MF.V3.Settings.RemoveVertices", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"fullname": "three.MF.V3.Settings.RemoveVertices.RemoveVertices", "modulename": "three.MF.V3.Settings.RemoveVertices", "qualname": "RemoveVertices", "kind": "class", "doc": "

Remove vertices.

\n"}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"fullname": "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__", "modulename": "three.MF.V3.Settings.RemoveVertices", "qualname": "RemoveVertices.__init__", "kind": "function", "doc": "

\n", "signature": "(scans: List[int] = None)"}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"fullname": "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans", "modulename": "three.MF.V3.Settings.RemoveVertices", "qualname": "RemoveVertices.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan": {"fullname": "three.MF.V3.Settings.Scan", "modulename": "three.MF.V3.Settings.Scan", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan": {"fullname": "three.MF.V3.Settings.Scan.Scan", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan", "kind": "class", "doc": "

Scan settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: three.MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None)"}, "three.MF.V3.Settings.Scan.Scan.Processing": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing", "kind": "class", "doc": "

Scan processing settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.__init__", "kind": "function", "doc": "

\n", "signature": "(\tprojectorSampleRate: float = None,\timageSampleRate: float = None,\tedgeDetection: three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection = None,\tphaseFilter: three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter = None,\tadaptiveSampling: three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling = None,\tpointClipping: List[three.MF.V3.Settings.Scan.Scan.Processing.PointClipping] = None,\tnormalEstimation: three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation = None,\toutlierRemoval: three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval = None)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection", "kind": "class", "doc": "

Phase edge detection settings.

\n\n

Phase edge detection produces a binary mask indicating the edges of a horizontal/vertical pair of phase images. Since flat geometries give a constant phase image gradient, we use the second derivative (Laplacian) of the phase image to detect edges rather than the gradient.

\n\n

The edge mask generated by phase edge detection is an input to both phase filtering and adaptive sampling. If neither of these are enabled, the phase edge detection settings have no effect on the output point cloud.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tthreshold: float,\tlaplacianKernelRadius: int,\tgaussianBlurRadius: int,\tgaussianBlurStdDev: float,\tmaximumWidthForProcessing: int)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.threshold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius", "kind": "variable", "doc": "

Gaussian blur kernel radius. (Optional) To disable, set to 0.\nThe phase images can optionally blurred before taking the Laplacian to reduce noise.\nHowever as a result, the detected edges are wider.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius", "kind": "variable", "doc": "

Gaussian blur kernel standard deviation.\nThis parameter is ignored if gaussianBlurSize is zero.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev", "kind": "variable", "doc": "

The maximum image width for processing. (Optional) To disable, set to 0.\nIf this value is greater than zero, the phase images are resized to the maximum width prior\nto computing the Laplacian and the the detected edges are then upsampled to the original size.\nThis would be done to speed up processing or to detect edges on a larger scale.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter", "kind": "class", "doc": "

Phase filter settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter.__init__", "kind": "function", "doc": "

The filter kernel radius.\nA neighboring value must be within this radius to be included in the filter.\nIf the kernel radius is set to zero, the phase filtering is disabled.

\n", "signature": "(kernelRadius: int, spatialWeightStdDev: float)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter.kernelRadius", "kind": "variable", "doc": "

The standard deviation of the spatial weights.\nThe weight of a neighboring value is $\\exp(-(r/s)^2)$ where $r$ is the distance\nto the central value and $s$ is the spatial weight standard deviation.\nIf the spatial weight standard deviation is set to zero, all the spatial\nweights are uniformly set to 1.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter.spatialWeightStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling", "kind": "class", "doc": "

Adaptive sampling settings

\n\n

Adaptive sampling will downsample points in regions of low detail\nand keep points in regions of high detail.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type,\trate: float)"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type", "kind": "class", "doc": "

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type.NONE", "kind": "variable", "doc": "

\n", "default_value": "<Type.NONE: 'NONE'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type.REGULAR", "kind": "variable", "doc": "

\n", "default_value": "<Type.REGULAR: 'REGULAR'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type.RANDOM", "kind": "variable", "doc": "

\n", "default_value": "<Type.RANDOM: 'RANDOM'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.rate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping", "kind": "class", "doc": "

Point clipping settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type,\ttransform: List[float] = None)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type", "kind": "class", "doc": "

Point clipping type.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.OutsideCube", "kind": "variable", "doc": "

\n", "default_value": "<Type.OutsideCube: 'OutsideCube'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.OutsideCylinder", "kind": "variable", "doc": "

\n", "default_value": "<Type.OutsideCylinder: 'OutsideCylinder'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.OutsideSphere", "kind": "variable", "doc": "

\n", "default_value": "<Type.OutsideSphere: 'OutsideSphere'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.InsideCube", "kind": "variable", "doc": "

\n", "default_value": "<Type.InsideCube: 'InsideCube'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.InsideCylinder", "kind": "variable", "doc": "

\n", "default_value": "<Type.InsideCylinder: 'InsideCylinder'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.InsideSphere", "kind": "variable", "doc": "

\n", "default_value": "<Type.InsideSphere: 'InsideSphere'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.transform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation", "kind": "class", "doc": "

Normal estimation settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method,\tmaximumNeighbourCount: int,\tmaximumNeighbourRadius: float,\tuseMaximumNeighbourCount: bool,\tuseMaximumNeighbourRadius: bool)"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.Method", "kind": "class", "doc": "

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.Method.NORMAL_LLS", "kind": "variable", "doc": "

\n", "default_value": "<Method.NORMAL_LLS: 'NORMAL_LLS'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D", "kind": "variable", "doc": "

\n", "default_value": "<Method.NORMAL_OPEN3D: 'NORMAL_OPEN3D'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.method", "kind": "variable", "doc": "

Maximum number of nearest neighbors used to compute the normal.\nThis value is only used with the NORMAL_OPEN3D method.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.maximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.maximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.useMaximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.useMaximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval", "kind": "class", "doc": "

Outlier removal settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval.__init__", "kind": "function", "doc": "

\n", "signature": "(neighbourCount: int, neighbourRadius: float)"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval.neighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval.neighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.projectorSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.imageSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.edgeDetection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.phaseFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.adaptiveSampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.pointClipping", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.normalEstimation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.outlierRemoval", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.camera": {"fullname": "three.MF.V3.Settings.Scan.Scan.camera", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.projector": {"fullname": "three.MF.V3.Settings.Scan.Scan.projector", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.projector", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.turntable": {"fullname": "three.MF.V3.Settings.Scan.Scan.turntable", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.capture": {"fullname": "three.MF.V3.Settings.Scan.Scan.capture", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.processing": {"fullname": "three.MF.V3.Settings.Scan.Scan.processing", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.processing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"fullname": "three.MF.V3.Settings.Scan.Scan.alignWithScanner", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.alignWithScanner", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"fullname": "three.MF.V3.Settings.Scan.Scan.centerAtOrigin", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.centerAtOrigin", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData": {"fullname": "three.MF.V3.Settings.ScanData", "modulename": "three.MF.V3.Settings.ScanData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData": {"fullname": "three.MF.V3.Settings.ScanData.ScanData", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData", "kind": "class", "doc": "

Scan data request.

\n"}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.__init__", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tmergeStep: three.MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: List[three.MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: List[three.MF.V3.Settings.ScanData.ScanData.Metadata] = None)"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer", "kind": "class", "doc": "

Scan buffer type.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Position", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Position: 'Position'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Normal", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Normal: 'Normal'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Color", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Color: 'Color'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.UV", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.UV: 'UV'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Quality", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Quality: 'Quality'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Triangle", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Triangle: 'Triangle'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Texture", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Texture: 'Texture'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.All", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.All", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.All: 'All'>"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata", "kind": "class", "doc": "

Scan metadata type.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata.Mean", "kind": "variable", "doc": "

\n", "default_value": "<Metadata.Mean: 'Mean'>"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata.StdDev", "kind": "variable", "doc": "

\n", "default_value": "<Metadata.StdDev: 'StdDev'>"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata.AxisAlignedBoundingBox", "kind": "variable", "doc": "

\n", "default_value": "<Metadata.AxisAlignedBoundingBox: 'AxisAlignedBoundingBox'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep", "kind": "class", "doc": "

The merge processing step.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Combined", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Combined: 'Combined'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Remeshed", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Remeshed: 'Remeshed'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Simplified", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Simplified: 'Simplified'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Textured", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Textured: 'Textured'>"}, "three.MF.V3.Settings.ScanData.ScanData.index": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.index", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.mergeStep", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.mergeStep", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.buffers", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.buffers", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.metadata", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.metadata", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanSelection": {"fullname": "three.MF.V3.Settings.ScanSelection", "modulename": "three.MF.V3.Settings.ScanSelection", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection", "kind": "class", "doc": "

Scan selection.

\n"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmode: three.MF.V3.Settings.ScanSelection.ScanSelection.Mode,\tgroups: List[int] = None)"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode", "kind": "class", "doc": "

Scan selection mode.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode.selected", "kind": "variable", "doc": "

\n", "default_value": "<Mode.selected: 'selected'>"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode.visible", "kind": "variable", "doc": "

\n", "default_value": "<Mode.visible: 'visible'>"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode.all", "kind": "variable", "doc": "

\n", "default_value": "<Mode.all: 'all'>"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.mode", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.mode", "kind": "variable", "doc": "

The set of user-selected groups.\nThese are only used if the selection mode is 'selected'.

\n"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.groups", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner": {"fullname": "three.MF.V3.Settings.Scanner", "modulename": "three.MF.V3.Settings.Scanner", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner": {"fullname": "three.MF.V3.Settings.Scanner.Scanner", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner", "kind": "class", "doc": "

Scanner settings.

\n"}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.__init__", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.__init__", "kind": "function", "doc": "

\n", "signature": "(\tadvanced: MF.V3.Settings.Advanced.Advanced = None,\tcamera: MF.V3.Settings.Camera.Camera = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\ti18n: MF.V3.Settings.I18n.I18n = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tstyle: MF.V3.Settings.Style.Style = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\ttutorials: MF.V3.Settings.Tutorials.Tutorials = None,\tviewer: MF.V3.Settings.Viewer.Viewer = None,\tsoftware: MF.V3.Settings.Software.Software = None)"}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.advanced", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.advanced", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.camera", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.capture", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.i18n", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.i18n", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.projector", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.projector", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.style": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.style", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.style", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.turntable", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.tutorials", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.tutorials", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.viewer", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.viewer", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.software": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.software", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.software", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth": {"fullname": "three.MF.V3.Settings.Smooth", "modulename": "three.MF.V3.Settings.Smooth", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth": {"fullname": "three.MF.V3.Settings.Smooth.Smooth", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth", "kind": "class", "doc": "

Mesh smoothing settings.

\n"}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.__init__", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttaubin: three.MF.V3.Settings.Smooth.Smooth.Taubin = None)"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin", "kind": "class", "doc": "

Taubin smoothing settings.

\n"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.__init__", "kind": "function", "doc": "

\n", "signature": "(iterations: int = None, lambda_: float = None, mu: float = None)"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.iterations", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.lambda_", "kind": "variable", "doc": "

Second laplacian smoothing filter parameter.\nMust be negative and have magnitude greater or equal to lambda .

\n"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.mu", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.selection", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.taubin", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.taubin", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Software": {"fullname": "three.MF.V3.Settings.Software", "modulename": "three.MF.V3.Settings.Software", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Software.Software": {"fullname": "three.MF.V3.Settings.Software.Software", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software", "kind": "class", "doc": "

Software settings.

\n"}, "three.MF.V3.Settings.Software.Software.__init__": {"fullname": "three.MF.V3.Settings.Software.Software.__init__", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software.__init__", "kind": "function", "doc": "

\n", "signature": "(updateMajor: bool = None, updateNightly: bool = None)"}, "three.MF.V3.Settings.Software.Software.updateMajor": {"fullname": "three.MF.V3.Settings.Software.Software.updateMajor", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software.updateMajor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Software.Software.updateNightly": {"fullname": "three.MF.V3.Settings.Software.Software.updateNightly", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software.updateNightly", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Style": {"fullname": "three.MF.V3.Settings.Style", "modulename": "three.MF.V3.Settings.Style", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Style.Style": {"fullname": "three.MF.V3.Settings.Style.Style", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style", "kind": "class", "doc": "

Style settings.

\n"}, "three.MF.V3.Settings.Style.Style.__init__": {"fullname": "three.MF.V3.Settings.Style.Style.__init__", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.__init__", "kind": "function", "doc": "

\n", "signature": "(theme: three.MF.V3.Settings.Style.Style.Theme = None)"}, "three.MF.V3.Settings.Style.Style.Theme": {"fullname": "three.MF.V3.Settings.Style.Style.Theme", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.Theme", "kind": "class", "doc": "

Themes.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"fullname": "three.MF.V3.Settings.Style.Style.Theme.Light", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.Theme.Light", "kind": "variable", "doc": "

\n", "default_value": "<Theme.Light: 'Light'>"}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"fullname": "three.MF.V3.Settings.Style.Style.Theme.Dark", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.Theme.Dark", "kind": "variable", "doc": "

\n", "default_value": "<Theme.Dark: 'Dark'>"}, "three.MF.V3.Settings.Style.Style.theme": {"fullname": "three.MF.V3.Settings.Style.Style.theme", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.theme", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable": {"fullname": "three.MF.V3.Settings.Turntable", "modulename": "three.MF.V3.Settings.Turntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable": {"fullname": "three.MF.V3.Settings.Turntable.Turntable", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable", "kind": "class", "doc": "

Turntable settings.

\n"}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.__init__", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: int,\tsweep: int,\tuse: bool = None,\tpointClippingRadius: float = None,\tpointClippingMinHeight: float = None,\tpointClippingMaxHeight: float = None,\toffsetAngle: float = None)"}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.scans", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.sweep", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.sweep", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.use": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.use", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.pointClippingRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.pointClippingMinHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.pointClippingMaxHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.offsetAngle", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.offsetAngle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials": {"fullname": "three.MF.V3.Settings.Tutorials", "modulename": "three.MF.V3.Settings.Tutorials", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials", "kind": "class", "doc": "

Tutorials settings.

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.__init__", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.__init__", "kind": "function", "doc": "

\n", "signature": "(\tshow: bool = None,\tviewed: three.MF.V3.Settings.Tutorials.Tutorials.Viewed = None)"}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.Viewed", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.Viewed", "kind": "class", "doc": "

Viewed tutorials.

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.Viewed.__init__", "kind": "function", "doc": "

\n", "signature": "(pages: List[str] = None)"}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.Viewed.pages", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.show", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.show", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.viewed", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.viewed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video": {"fullname": "three.MF.V3.Settings.Video", "modulename": "three.MF.V3.Settings.Video", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video": {"fullname": "three.MF.V3.Settings.Video.Video", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video", "kind": "class", "doc": "

Video settings.

\n"}, "three.MF.V3.Settings.Video.Video.__init__": {"fullname": "three.MF.V3.Settings.Video.Video.__init__", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcodec: three.MF.V3.Settings.Video.Video.Codec,\tformat: three.MF.V3.Settings.Video.Video.Format,\twidth: int,\theight: int)"}, "three.MF.V3.Settings.Video.Video.Codec": {"fullname": "three.MF.V3.Settings.Video.Video.Codec", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec", "kind": "class", "doc": "

Video codecs.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.NoCodec", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.NoCodec", "kind": "variable", "doc": "

\n", "default_value": "<Codec.NoCodec: 'NoCodec'>"}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.RAW", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.RAW", "kind": "variable", "doc": "

\n", "default_value": "<Codec.RAW: 'RAW'>"}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.JPEG", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.JPEG", "kind": "variable", "doc": "

\n", "default_value": "<Codec.JPEG: 'JPEG'>"}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.H264", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.H264", "kind": "variable", "doc": "

\n", "default_value": "<Codec.H264: 'H264'>"}, "three.MF.V3.Settings.Video.Video.Format": {"fullname": "three.MF.V3.Settings.Video.Video.Format", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format", "kind": "class", "doc": "

Pixel formats.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"fullname": "three.MF.V3.Settings.Video.Video.Format.NoFormat", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.NoFormat", "kind": "variable", "doc": "

\n", "default_value": "<Format.NoFormat: 'NoFormat'>"}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"fullname": "three.MF.V3.Settings.Video.Video.Format.RGB565", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.RGB565", "kind": "variable", "doc": "

\n", "default_value": "<Format.RGB565: 'RGB565'>"}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"fullname": "three.MF.V3.Settings.Video.Video.Format.RGB888", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.RGB888", "kind": "variable", "doc": "

\n", "default_value": "<Format.RGB888: 'RGB888'>"}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"fullname": "three.MF.V3.Settings.Video.Video.Format.BGR888", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.BGR888", "kind": "variable", "doc": "

\n", "default_value": "<Format.BGR888: 'BGR888'>"}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"fullname": "three.MF.V3.Settings.Video.Video.Format.YUV420", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.YUV420", "kind": "variable", "doc": "

\n", "default_value": "<Format.YUV420: 'YUV420'>"}, "three.MF.V3.Settings.Video.Video.codec": {"fullname": "three.MF.V3.Settings.Video.Video.codec", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video.format": {"fullname": "three.MF.V3.Settings.Video.Video.format", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video.width": {"fullname": "three.MF.V3.Settings.Video.Video.width", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video.height": {"fullname": "three.MF.V3.Settings.Video.Video.height", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Viewer": {"fullname": "three.MF.V3.Settings.Viewer", "modulename": "three.MF.V3.Settings.Viewer", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Viewer.Viewer": {"fullname": "three.MF.V3.Settings.Viewer.Viewer", "modulename": "three.MF.V3.Settings.Viewer", "qualname": "Viewer", "kind": "class", "doc": "

3D Viewer settings.

\n"}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"fullname": "three.MF.V3.Settings.Viewer.Viewer.__init__", "modulename": "three.MF.V3.Settings.Viewer", "qualname": "Viewer.__init__", "kind": "function", "doc": "

\n", "signature": "(textureOpacity: float = None)"}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"fullname": "three.MF.V3.Settings.Viewer.Viewer.textureOpacity", "modulename": "three.MF.V3.Settings.Viewer", "qualname": "Viewer.textureOpacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Wifi": {"fullname": "three.MF.V3.Settings.Wifi", "modulename": "three.MF.V3.Settings.Wifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Wifi.Wifi": {"fullname": "three.MF.V3.Settings.Wifi.Wifi", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi", "kind": "class", "doc": "

Wifi connection settings.

\n"}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"fullname": "three.MF.V3.Settings.Wifi.Wifi.__init__", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi.__init__", "kind": "function", "doc": "

\n", "signature": "(ssid: str, password: str)"}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"fullname": "three.MF.V3.Settings.Wifi.Wifi.ssid", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Wifi.Wifi.password": {"fullname": "three.MF.V3.Settings.Wifi.Wifi.password", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi.password", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task": {"fullname": "three.MF.V3.Task", "modulename": "three.MF.V3.Task", "kind": "module", "doc": "

\n"}, "three.MF.V3.Task.TaskState": {"fullname": "three.MF.V3.Task.TaskState", "modulename": "three.MF.V3.Task", "qualname": "TaskState", "kind": "class", "doc": "

\n", "bases": "enum.Enum"}, "three.MF.V3.Task.TaskState.Empty": {"fullname": "three.MF.V3.Task.TaskState.Empty", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Empty", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Empty: 'None'>"}, "three.MF.V3.Task.TaskState.Sent": {"fullname": "three.MF.V3.Task.TaskState.Sent", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Sent", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Sent: 'Sent'>"}, "three.MF.V3.Task.TaskState.Received": {"fullname": "three.MF.V3.Task.TaskState.Received", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Received", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Received: 'Received'>"}, "three.MF.V3.Task.TaskState.Started": {"fullname": "three.MF.V3.Task.TaskState.Started", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Started", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Started: 'Started'>"}, "three.MF.V3.Task.TaskState.Completed": {"fullname": "three.MF.V3.Task.TaskState.Completed", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Completed", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Completed: 'Completed'>"}, "three.MF.V3.Task.TaskState.Cancelled": {"fullname": "three.MF.V3.Task.TaskState.Cancelled", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Cancelled", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Cancelled: 'Cancelled'>"}, "three.MF.V3.Task.TaskState.Failed": {"fullname": "three.MF.V3.Task.TaskState.Failed", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Failed", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Failed: 'Failed'>"}, "three.MF.V3.Task.TaskState.Dropped": {"fullname": "three.MF.V3.Task.TaskState.Dropped", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Dropped", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Dropped: 'Dropped'>"}, "three.MF.V3.Task.TaskState.Disconnected": {"fullname": "three.MF.V3.Task.TaskState.Disconnected", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Disconnected", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Disconnected: 'Disconnected'>"}, "three.MF.V3.Task.Task": {"fullname": "three.MF.V3.Task.Task", "modulename": "three.MF.V3.Task", "qualname": "Task", "kind": "class", "doc": "

*\nGeneric task message for the Three Scanner.

\n\n

The task message is the generic message used for requesting a task of the Three Scanner and receiving updates and results.

\n\n

Example: Apply camera settings with the \"SetCameras\" task.

\n\n
\n

Example request:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras"\n"Input":{\n"analogGain":256,\n"digitalGain":128,\n"exposure":18000\n},\n}\n}\n
\n
\n\n
\n

Example response:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras"\n"Input":{\n"analogGain":256,\n"digitalGain":512,\n"exposure":18000\n},\n"Output":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":512},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Task.Task.__init__": {"fullname": "three.MF.V3.Task.Task.__init__", "modulename": "three.MF.V3.Task", "qualname": "Task.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None,\tOutput: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None,\tState: three.MF.V3.Task.TaskState = None,\tError: str = None,\tProgress: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None)"}, "three.MF.V3.Task.Task.Index": {"fullname": "three.MF.V3.Task.Task.Index", "modulename": "three.MF.V3.Task", "qualname": "Task.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Type": {"fullname": "three.MF.V3.Task.Task.Type", "modulename": "three.MF.V3.Task", "qualname": "Task.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Input": {"fullname": "three.MF.V3.Task.Task.Input", "modulename": "three.MF.V3.Task", "qualname": "Task.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Output": {"fullname": "three.MF.V3.Task.Task.Output", "modulename": "three.MF.V3.Task", "qualname": "Task.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.State": {"fullname": "three.MF.V3.Task.Task.State", "modulename": "three.MF.V3.Task", "qualname": "Task.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Error": {"fullname": "three.MF.V3.Task.Task.Error", "modulename": "three.MF.V3.Task", "qualname": "Task.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Progress": {"fullname": "three.MF.V3.Task.Task.Progress", "modulename": "three.MF.V3.Task", "qualname": "Task.Progress", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks": {"fullname": "three.MF.V3.Tasks", "modulename": "three.MF.V3.Tasks", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject": {"fullname": "three.MF.V3.Tasks.AddMergeToProject", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject", "kind": "class", "doc": "

*\nAdd a merged scan to the current project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AddMergeToProject"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AddMergeToProject",\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Scan-1",\n"scan": 1,\n"color":[0.5, 0.8, 0.3]\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request", "kind": "class", "doc": "

Client request for the AddMergeToProject task.

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response", "kind": "class", "doc": "

Server response for the AddMergeToProject task.

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align": {"fullname": "three.MF.V3.Tasks.Align", "modulename": "three.MF.V3.Tasks.Align", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align": {"fullname": "three.MF.V3.Tasks.Align.Align", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align", "kind": "class", "doc": "

*\nAlign two scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Align",\n"Input":{\n"source":1,\n"target":2,\n"rough":{"method": "FastGlobal"},\n"fine":{"method": "ICP"}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Align",\n"Input":{\n"source":1,\n"target":2,\n"rough":{"method": "FastGlobal"},\n"fine":{"method": "ICP"}\n},\n"Output":{\n"rotation":[0.2, 0.4, 0.6],\n"translation":[11, -10, 24]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Align.Align.Request": {"fullname": "three.MF.V3.Tasks.Align.Align.Request", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request", "kind": "class", "doc": "

Client request for the Align task.

\n"}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.__init__", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Align.Align)"}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.Index", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.Type", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.Input", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response": {"fullname": "three.MF.V3.Tasks.Align.Align.Response", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response", "kind": "class", "doc": "

Server response for the Align task.

\n"}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.__init__", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Align.Align,\tOutput: MF.V3.Descriptors.Transform.Transform,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Index", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Type", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Input", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Output", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.State": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.State", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Error", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus": {"fullname": "three.MF.V3.Tasks.AutoFocus", "modulename": "three.MF.V3.Tasks.AutoFocus", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus", "kind": "class", "doc": "

*\nAuto focus one or both cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AutoFocus",\n"Input":{\n"cameras":[{\n"index":1,\n"box":{"x":196,"y":130,"width":64,"height":64}\n}],\n"applyAll":false\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AutoFocus",\n"Input":{\n"cameras":[{\n"index":1,\n"box":{"x":196,"y":130,"width":64,"height":64}\n}],\n"applyAll":false\n}\n"Output":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":true},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n"focus":{\n"box":{\n"default":[\n{"height":64,"width":64,"x":224,"y":158},\n{"height":64,"width":64,"x":224,"y":158}\n],\n"value":[\n{"height":64,"width":64,"x":271,"y":134},\n{"height":64,"width":64,"x":196,"y":130}\n]\n},\n"value":{"default":[350,350],"max":1024,"min":0,"value":[396,392]}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request", "kind": "class", "doc": "

Client request for the AutoFocus task.

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.AutoFocus.AutoFocus = None)"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response", "kind": "class", "doc": "

Server response for the AutoFocus task.

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.AutoFocus.AutoFocus = None,\tOutput: MF.V3.Descriptors.Settings.Camera.Camera = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox": {"fullname": "three.MF.V3.Tasks.BoundingBox", "modulename": "three.MF.V3.Tasks.BoundingBox", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox", "kind": "class", "doc": "

*\nGet the bounding box of a set of scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"BoundingBox",\n"Input":{\n"selection":{"mode":"visible"},\n"axisAligned":false\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"BoundingBox",\n"Input":{\n"selection":{"mode":"visible"},\n"axisAligned":false\n},\n"Output":{\n"center":[11.9,-10.1,94.5],\n"rotation":[\n0.7, -0.7, 0.0,\n0.7,  0.7, 0.0,\n0.0,  0.0, 1.0],\n"size":[442.2,253.1,447.1],\n"transform":[\n221, 0.0, 0.0,  11.9,\n0.0, 126, 0.0, -10.1,\n0.0, 0.0, 223,  94.5,\n0.0, 0.0, 0.0,   1.0]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request", "kind": "class", "doc": "

Client request for the BoundingBox task.

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.BoundingBox.BoundingBox)"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response", "kind": "class", "doc": "

Server response for the BoundingBox task.

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.BoundingBox.BoundingBox,\tOutput: MF.V3.Descriptors.BoundingBox.BoundingBox,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras": {"fullname": "three.MF.V3.Tasks.CalibrateCameras", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras", "kind": "class", "doc": "

*\nCalibrate the cameras.

\n\n

This task starts the camera calibration capture sequence where the user is guided to place the calibration card with a card outline drawn on the video feed. Once each calibration card pose is captured, the cameras are calibrated and the calibration results are returned as a string. If the cameras cannot be calibrated the task finishes in a Failed state.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateCameras"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateCameras",\n"Output":"Camera calibration results: ...",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request", "kind": "class", "doc": "

Client request for the CalibrateCameras task.

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response", "kind": "class", "doc": "

Server response for the CalibrateCameras task.

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: str = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable", "kind": "class", "doc": "

*\nCalibrate the turntable.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateTurntable"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateTurntable",\n"Output":{\n"date":[2024,4,27,16,57,35],\n"quality":"Excellent",\n"focus":[300,320]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request", "kind": "class", "doc": "

Client request for the CalibrateTurntable task.

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response", "kind": "class", "doc": "

Server response for the CalibrateTurntable task.

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.Turntable = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets", "kind": "class", "doc": "

*\nGet the camera calibration targets.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrationCaptureTargets"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrationCaptureTargets",\n"Output":{[\n{\n"camera":0,\n"quads":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]\n},\n{\n"camera":1,\n"quads":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]\n},\n]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request", "kind": "class", "doc": "

Client request for the CalibrationCaptureTargets task.

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response", "kind": "class", "doc": "

Server response for the CalibrationCaptureTargets task.

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.CaptureTarget = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration": {"fullname": "three.MF.V3.Tasks.CameraCalibration", "modulename": "three.MF.V3.Tasks.CameraCalibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration", "kind": "class", "doc": "

*\nGet the camera calibration descriptor.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CameraCalibration"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CameraCalibration",\n"Output":{\n"date":[2024,4,27,16,57,35],\n"quality":"Excellent"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request", "kind": "class", "doc": "

Client request for the CameraCalibration task.

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response", "kind": "class", "doc": "

Server response for the CameraCalibration task.

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.Camera = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage": {"fullname": "three.MF.V3.Tasks.CaptureImage", "modulename": "three.MF.V3.Tasks.CaptureImage", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage", "kind": "class", "doc": "

*\nCapture an image from one or both cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CaptureImage"\n"Input":{\n"selection":{0,1},\n"grayscale":false,\n"codec":jpg\n}\n}\n}\n
\n
\n\n
\n

Buffer messages from server.

\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"{"camera":0,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104},\n"Index":0,\n"Size":856664,\n"Task":{\n"Index":1,\n"Type":"CaptureImage",\n"Input":{"selection":{0,1}, "grayscale":false, "codec":jpg}\n}\n}\n}\n
\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"{"camera":1,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104},\n"Index":1,\n"Size":847726,\n"Task":{\n"Index":1,\n"Type":"CaptureImage",\n"Input":{"selection":{0,1}, "grayscale":false, "codec":jpg}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CaptureImage"\n"Input":{\n"selection":{0,1},\n"grayscale":false,\n"codec":jpg\n}\n"Output":[\n{"camera":0,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104},\n{"camera":1,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request", "kind": "class", "doc": "

Client request for the CaptureImage task.

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.CaptureImage.CaptureImage)"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response", "kind": "class", "doc": "

Server response for the CaptureImage task.

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.CaptureImage.CaptureImage,\tOutput: List[MF.V3.Descriptors.CaptureImage.CaptureImage] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer", "kind": "class", "doc": "

Server buffer message for the CaptureImage task.

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.CaptureImage.CaptureImage)"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings": {"fullname": "three.MF.V3.Tasks.ClearSettings", "modulename": "three.MF.V3.Tasks.ClearSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings", "kind": "class", "doc": "

*\nClear scanner settings and restore the default factory settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ClearSettings"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ClearSettings",\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request", "kind": "class", "doc": "

Client request for the ClearSettings task.

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response", "kind": "class", "doc": "

Server response for the ClearSettings task.

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject": {"fullname": "three.MF.V3.Tasks.CloseProject", "modulename": "three.MF.V3.Tasks.CloseProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject", "kind": "class", "doc": "

*\nClose the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CloseProject",\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CloseProject",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request", "kind": "class", "doc": "

Client request for the CloseProject task.

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response", "kind": "class", "doc": "

Server response for the CloseProject task.

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi": {"fullname": "three.MF.V3.Tasks.ConnectWifi", "modulename": "three.MF.V3.Tasks.ConnectWifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi", "kind": "class", "doc": "

*\nConnect to a wifi network.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ConnectWifi",\n"Input":{\n"ssid":"Network1"\n"password":"password"\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ConnectWifi",\n"Input":{\n{\n"ssid":"Network1"\n"password":"password"\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request", "kind": "class", "doc": "

Client request for the ConnectWifi task.

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Wifi.Wifi)"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response", "kind": "class", "doc": "

Server response for the ConnectWifi task.

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Wifi.Wifi,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups": {"fullname": "three.MF.V3.Tasks.CopyGroups", "modulename": "three.MF.V3.Tasks.CopyGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups", "kind": "class", "doc": "

*\nCopy a set of scan groups.

\n\n

Say we have a scan group three with three groups:

\n\n
\n
{\n"groups":[\n{"index":1, "name":"Group 1"},\n{"index":2, "name":"Group 2"},\n{"index":3, "name":"Group 3"}\n],\n}\n
\n
\n\n

and we want to copy groups 1 and 3.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CopyGroups",\n"Input":{\n"sourceIndexes": [1,3],\n"nameSuffix": "-copy"\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CopyGroups",\n"Input":{"sourceIndexes":[1,3,5]},\n"Output":{\n"groups":[\n{"index":1, "name":"Group 1"},\n{"index":4, "name":"Group 1-copy"}\n{"index":2, "name":"Group 2"},\n{"index":3, "name":"Group 3"},\n{"index":5, "name":"Group 3-copy"},\n],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request", "kind": "class", "doc": "

Client request for the CopyGroups task.

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.CopyGroups.CopyGroups)"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response", "kind": "class", "doc": "

Server response for the CopyGroups task.

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.CopyGroups.CopyGroups,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap": {"fullname": "three.MF.V3.Tasks.DepthMap", "modulename": "three.MF.V3.Tasks.DepthMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap", "kind": "class", "doc": "

*\nCapture a new scan.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DepthMap"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n}\n}\n
\n
\n\n
\n

Depth map buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":13128960,\n"Descriptor":{\n"cols":2104,\n"rows":1560,\n"step":8416,\n"type":5\n},\n"Task":{\n"Index":1,\n"Type":"DepthMap",\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n}\n}\n}\n}\n
\n
\n\n
\n

Depth map binary data transfer from server [13128960 bytes].

\n
\n\n
\n

Texture buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":1,\n"Size":9846720,\n"Descriptor":{\n"cols":2104,\n"rows":1560,\n"step":6312,\n"type":16\n},\n"Task":{\n"Index":1,\n"Type":"DepthMap",\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n}\n}\n}\n}\n
\n
\n\n
\n

Texture binary data transfer from server [9846720 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DepthMap"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n"Output":[2500,0,1052,0,2500,780,0,0,1],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request", "kind": "class", "doc": "

Client request for the DepthMap task.

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Scan.Scan = None)"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response", "kind": "class", "doc": "

Server response for the DepthMap task.

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Scan.Scan = None,\tOutput: List[float] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer", "kind": "class", "doc": "

Server buffer message for the DepthMap task.

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.Image.Image)"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard", "kind": "class", "doc": "

*\nTurns on the detection the calibration card on one or both cameras.\nUse the Video Frame Descriptor to get the results of the detection.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DetectCalibrationCard",\n"Input":3\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Input":3,\n"Type":"DetectCalibrationCard",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request", "kind": "class", "doc": "

Client request for the DetectCalibrationCard task.

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.Type", "kind": "variable", "doc": "

Flag specifying on which camera(s) to start the detection the calibration card.\n[0: neither camera (disable), 1: left camera, 2: right camera, 3: both cameras]

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response", "kind": "class", "doc": "

Server response for the DetectCalibrationCard task.

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Type", "kind": "variable", "doc": "

Flag sent in the request specifying on which camera(s) to start the detection the calibration card.\n[0: neither camera (disable), 1: left camera, 2: right camera, 3: both cameras]

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject": {"fullname": "three.MF.V3.Tasks.DownloadProject", "modulename": "three.MF.V3.Tasks.DownloadProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject", "kind": "class", "doc": "

*\nDownload a project from the scanner.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n
\n
\n\n
\n

Buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"Project-5.zip",\n"Index":0,\n"Size":15682096,\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n}\n
\n
\n\n
\n

Binary data transfer from server: The project zip file [15682096 bytes].\n Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject"\n"Input":5,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request", "kind": "class", "doc": "

Client request for the DownloadProject task.

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response", "kind": "class", "doc": "

Server response for the DownloadProject task.

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer", "kind": "class", "doc": "

Server buffer message for the DownloadProject task.

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task, Descriptor: str)"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export": {"fullname": "three.MF.V3.Tasks.Export", "modulename": "three.MF.V3.Tasks.Export", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export": {"fullname": "three.MF.V3.Tasks.Export.Export", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export", "kind": "class", "doc": "

*\nExport a group of scans.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Export",\n"Input":{\n"selection":{"mode":"visible"},\n"format":"obj",\n"texture":true,\n"merge":false\n}\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":8413737,\n"Task":{\n"Index":1,\n"Type":"Export",\n"Input":{\n"selection":{"mode":"visible"},\n"format":"obj",\n"texture":true,\n"merge":false\n}\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [8413737 bytes].

\n
\n\n
\n

Response from server:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Export"\n"Input":{\n"selection":{"mode":"visible"},\n"format":"obj",\n"texture":true,\n"merge":false\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Export.Export.Request": {"fullname": "three.MF.V3.Tasks.Export.Export.Request", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request", "kind": "class", "doc": "

Client request for the Export task.

\n"}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.__init__", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Export.Export)"}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.Index", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.Type", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.Input", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response": {"fullname": "three.MF.V3.Tasks.Export.Export.Response", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response", "kind": "class", "doc": "

Server response for the Export task.

\n"}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.__init__", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Export.Export,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Index", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Type", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Input", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.State": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.State", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Error", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer", "kind": "class", "doc": "

Server buffer message for the Export task.

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.__init__", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.Index", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.Size", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.Task", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs", "kind": "class", "doc": "

*\nExport facotry calibration logs.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportFactoryCalibrationLogs"\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":41337,\n"Task":{\n"Index":1,\n"Type":"ExportFactoryCalibrationLogs"\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [41337 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportFactoryCalibrationLogs"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request", "kind": "class", "doc": "

Client request for the ExportFactoryCalibrationLogs task.

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response", "kind": "class", "doc": "

Server response for the ExportFactoryCalibrationLogs task.

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportFactoryCalibrationLogs task.

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap": {"fullname": "three.MF.V3.Tasks.ExportHeatMap", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap", "kind": "class", "doc": "

*\nExport a mesh with vertex colors generated by the 'HeatMap' task.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportHeatMap",\n"Input":{"color":{"min":0.0,"max":1.0}}\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":8413737,\n"Task":{\n"Index":1,\n"Type":"ExportHeatMap",\n"Input":{"color":{"min":0.0,"max":1.0}}\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [8413737 bytes].

\n
\n\n
\n

Response from server:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportHeatMap",\n"Input":{"color":{"min":0.0,"max":1.0}},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request", "kind": "class", "doc": "

Client request for the ExportHeatMap task.

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Export.Export)"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response", "kind": "class", "doc": "

Server response for the ExportHeatMap task.

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Export.Export,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportHeatMap task.

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs": {"fullname": "three.MF.V3.Tasks.ExportLogs", "modulename": "three.MF.V3.Tasks.ExportLogs", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs", "kind": "class", "doc": "

*\nExport scanner logs.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportLogs",\n"Input":true\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":41337,\n"Task":{\n"Index":1,\n"Type":"ExportLogs",\n"Input":true\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [41337 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportLogs"\n"Input":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request", "kind": "class", "doc": "

Client request for the ExportLogs task.

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: bool = None)"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response", "kind": "class", "doc": "

Server response for the ExportLogs task.

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportLogs task.

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge": {"fullname": "three.MF.V3.Tasks.ExportMerge", "modulename": "three.MF.V3.Tasks.ExportMerge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge", "kind": "class", "doc": "

*\nExport a merged scan.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportMerge",\n"Input":{\n"format":"obj",\n"texture":true\n}\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":8413737,\n"Task":{\n"Index":1,\n"Type":"ExportMerge",\n"Input":{\n"format":"obj",\n"texture":true\n}\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [8413737 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportMerge"\n"Input":{\n"format":"obj",\n"texture":true\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request", "kind": "class", "doc": "

Client request for the ExportMerge task.

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Export.Export)"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response", "kind": "class", "doc": "

Server response for the ExportMerge task.

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Export.Export,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportMerge task.

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset": {"fullname": "three.MF.V3.Tasks.FactoryReset", "modulename": "three.MF.V3.Tasks.FactoryReset", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset", "kind": "class", "doc": "

*\nReset the scanner to factory settings.\nThis removes all projects and restores factory calibration.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FactoryReset"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FactoryReset"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request", "kind": "class", "doc": "

Client request for the FactoryReset task.

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response", "kind": "class", "doc": "

Server response for the FactoryReset task.

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup": {"fullname": "three.MF.V3.Tasks.FlattenGroup", "modulename": "three.MF.V3.Tasks.FlattenGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup", "kind": "class", "doc": "

*\nFlatten a scan group such that it only consists of single scans.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FlattenGroup",\n"Input":0\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FlattenGroup",\n"Input":0,\n"Output":{\n"groups":[{\n"index":2,\n"name":"Group 2",\n"groups":[{\n"index":1,\n"name":"Group 1"\n}]\n}],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request", "kind": "class", "doc": "

Client request for the FlattenGroup task.

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response", "kind": "class", "doc": "

Server response for the FlattenGroup task.

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi": {"fullname": "three.MF.V3.Tasks.ForgetWifi", "modulename": "three.MF.V3.Tasks.ForgetWifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi", "kind": "class", "doc": "

*\nForget all wifi connections.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ForgetWifi"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ForgetWifi"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request", "kind": "class", "doc": "

Client request for the ForgetWifi task.

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response", "kind": "class", "doc": "

Server response for the ForgetWifi task.

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras": {"fullname": "three.MF.V3.Tasks.HasCameras", "modulename": "three.MF.V3.Tasks.HasCameras", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras", "kind": "class", "doc": "

*\nCheck if the scanner has working cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasCameras"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasCameras",\n"Output":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request", "kind": "class", "doc": "

Client request for the HasCameras task.

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response", "kind": "class", "doc": "

Server response for the HasCameras task.

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector": {"fullname": "three.MF.V3.Tasks.HasProjector", "modulename": "three.MF.V3.Tasks.HasProjector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector", "kind": "class", "doc": "

*\nCheck if the scanner has a working projector.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasProjector"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasProjector",\n"Output":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request", "kind": "class", "doc": "

Client request for the HasProjector task.

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response", "kind": "class", "doc": "

Server response for the HasProjector task.

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable": {"fullname": "three.MF.V3.Tasks.HasTurntable", "modulename": "three.MF.V3.Tasks.HasTurntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable", "kind": "class", "doc": "

*\nCheck if the scanner is connected to a working turntable.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasTurntable"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasTurntable",\n"Output":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request", "kind": "class", "doc": "

Client request for the HasTurntable task.

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response", "kind": "class", "doc": "

Server response for the HasTurntable task.

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap": {"fullname": "three.MF.V3.Tasks.HeatMap", "modulename": "three.MF.V3.Tasks.HeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap", "kind": "class", "doc": "

*\nCompute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n
\n
\n\n
\n

Vertex position buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Position"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n}\n
\n
\n\n
\n

Vertex position binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex quality buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Quality"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n}\n
\n
\n\n
\n

Vertex quality binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Triangle index buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":4,\n"Size":1996356,\n"Descriptor":{\n"components":[{\n"type":"Triangle"\n"size":1,\n"offset":0,\n"normalized":false,\n}],\n"stride":1\n},\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n}\n
\n
\n\n
\n

Triangle index binary data transfer from server [1996356 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]},\n"Output":{\n"count":96564,\n"max":32.734107971191406,\n"mean":1.964127540588379,\n"median":0.12784385681152344,\n"min":9.611248970031738e-07,\n"outlierDistance":0.0,\n"stddev":4.970643997192383\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request", "kind": "class", "doc": "

Client request for the HeatMap task.

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.HeatMap.HeatMap)"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response", "kind": "class", "doc": "

Server response for the HeatMap task.

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.HeatMap.HeatMap,\tOutput: MF.V3.Descriptors.HeatMap.HeatMap,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import": {"fullname": "three.MF.V3.Tasks.Import", "modulename": "three.MF.V3.Tasks.Import", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import": {"fullname": "three.MF.V3.Tasks.Import.Import", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import", "kind": "class", "doc": "

*\nImport a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file. Supported formats are DAE, FBX, GLB, OBJ, PLY and STL.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Import",\n"Input":{"unit":"Inch"}\n}\n}\n
\n
\n\n
\n

Buffer message from client.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1052,\n"Task":{\n"Index":1,\n"Type":"Import",\n"Input":{"unit":"Inch"}\n}\n}\n}\n
\n
\n\n
\n

Binary data transfer from client: The mesh zip file [1052 bytes].\n Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Import",\n"Input":{"unit":"Inch"},\n"Output":{\n"groups":[{"index":1,"name":"box","scan":1}],\n"imported":[{"file":"mesh.ply"}],\n"ignored":[],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Import.Import.Request": {"fullname": "three.MF.V3.Tasks.Import.Import.Request", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request", "kind": "class", "doc": "

Client request for the Import task.

\n"}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.__init__", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Import.Import = None)"}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.Index", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.Type", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.Input", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response": {"fullname": "three.MF.V3.Tasks.Import.Import.Response", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response", "kind": "class", "doc": "

Server response for the Import task.

\n"}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.__init__", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Import.Import = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Index", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Type", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Input", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.State": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.State", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Error", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer", "kind": "class", "doc": "

Client buffer message for the Import task.

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.__init__", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.Index", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.Size", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.Task", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats": {"fullname": "three.MF.V3.Tasks.ListExportFormats", "modulename": "three.MF.V3.Tasks.ListExportFormats", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats", "kind": "class", "doc": "

*\nList all export formats and the geometry elements they support.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListExportFormats"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListExportFormats",\n"Output":{[\n{\n"format": "ply",\n"colors": true,\n"description": "Polygon format",\n"extension": ".ply",\n"faces": ["Point","Triangle","Quad"],\n"normals": true,\n"textures": "Single"\n},\n{\n"format": "obj",\n"colors": true,\n"description": "Wavefront format",\n"extension": ".obj",\n"faces": ["Point","Triangle","Quad"],\n"normals": true,\n"textures": "Multiple"\n},\n{\n"format": "stl",\n"colors": false,\n"description": "Stereolithography format",\n"extension": ".stl",\n"faces": ["Point","Triangle"],\n"normals": true,\n"textures": "None"\n}\n]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request", "kind": "class", "doc": "

Client request for the ListExportFormats task.

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response", "kind": "class", "doc": "

Server response for the ListExportFormats task.

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Export.Export] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups": {"fullname": "three.MF.V3.Tasks.ListGroups", "modulename": "three.MF.V3.Tasks.ListGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups", "kind": "class", "doc": "

*\nList the scan groups in the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListGroups"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListGroups",\n"Output":{\n"groups":[\n{\n"index":1,\n"scan":1,\n"name":"Scan-1",\n"color":[0.75,0.5,0.2,1.0],\n"rotation":[0.03,0.1,-0.01],\n"translation":[-101,67,-561],\n"visible":true\n},\n{\n"index":2,\n"scan":2,\n"name":"Scan-2",\n"color":[0.7,0.9,0.6,1.0],\n"rotation":[0.1,0.2,0.5],\n"translation":[-90,64,-553],\n"visible":true\n},\n{\n"index":3,\n"scan":3,\n"name":"Scan-3",\n"color":[0.6,0.8,0.9,1.0],\n"visible":true\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request", "kind": "class", "doc": "

Client request for the ListGroups task.

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response", "kind": "class", "doc": "

Server response for the ListGroups task.

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces", "kind": "class", "doc": "

*\nList network interfaces.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListNetworkInterfaces"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListNetworkInterfaces",\n"Output":[\n{"ip":"192.168.1.234","name":"eth0","ssid":""},\n{"ip":"127.0.0.1","name":"lo","ssid":""}\n{"ip":"192.168.2.345","name":"wlan0","ssid":"Network1"}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request", "kind": "class", "doc": "

Client request for the ListNetworkInterfaces task.

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response", "kind": "class", "doc": "

Server response for the ListNetworkInterfaces task.

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Network.Interface = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects": {"fullname": "three.MF.V3.Tasks.ListProjects", "modulename": "three.MF.V3.Tasks.ListProjects", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects", "kind": "class", "doc": "

*\nList all projects.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListProjects"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListProjects",\n"Output":[\n{"index":1,"modified":[2024,5,12,11,23,17],"name":"Project 1","size":35409834},\n{"index":2,"modified":[2024,5,12,11,2,37],"name":"Project 2","size":175025367},\n{"index":3,"modified":[2024,5,6,17,15,53],"name":"Project 3","size":24314083}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request", "kind": "class", "doc": "

Client request for the ListProjects task.

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response", "kind": "class", "doc": "

Server response for the ListProjects task.

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Brief = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans": {"fullname": "three.MF.V3.Tasks.ListScans", "modulename": "three.MF.V3.Tasks.ListScans", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans", "kind": "class", "doc": "

*\nList the scans in the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListScans"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListScans",\n"Output":{[\n{\n"color":[0.8,0.5,0.6,1.0],\n"index":1,\n"name":"Scan-1",\n"scan":1,\n"rotation":[0.2,0.8,-0.1],\n"translation":[-275,-32,-134],\n"visible":true\n},\n{\n"color":[0.5,0.7,0.2,1.0],\n"index":2,\n"name":"Scan-2",\n"scan":2,\n"rotation":[0.7,-0.5,0.3],\n"translation":[75,-62,38],\n"visible":true\n},\n]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request", "kind": "class", "doc": "

Client request for the ListScans task.

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request.Index", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request.Type", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response", "kind": "class", "doc": "

Server response for the ListScans task.

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Project.Project.Group] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Index", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Type", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Output", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.State", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Error", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings": {"fullname": "three.MF.V3.Tasks.ListSettings", "modulename": "three.MF.V3.Tasks.ListSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings", "kind": "class", "doc": "

*\nGet scanner settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListSettings"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListSettings",\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request", "kind": "class", "doc": "

Client request for the ListSettings task.

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response", "kind": "class", "doc": "

Server response for the ListSettings task.

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi": {"fullname": "three.MF.V3.Tasks.ListWifi", "modulename": "three.MF.V3.Tasks.ListWifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi", "kind": "class", "doc": "

*\nList available wifi networks.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListWifi"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListWifi",\n"Output":{\n"networks":[\n{"ssid":"Network1","isActive":true,"isPublic":false,"quality":90},\n{"ssid":"Network2","isActive":true,"isPublic":true,"quality":50},\n{"ssid":"Network3","isActive":true,"isPublic":true,"quality":75}\n],\n"ssid":"Network1"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request", "kind": "class", "doc": "

Client request for the ListWifi task.

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response", "kind": "class", "doc": "

Server response for the ListWifi task.

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Wifi.Wifi = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge": {"fullname": "three.MF.V3.Tasks.Merge", "modulename": "three.MF.V3.Tasks.Merge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge": {"fullname": "three.MF.V3.Tasks.Merge.Merge", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge", "kind": "class", "doc": "

*\nMerge two or more scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Merge",\n"Input":{\n"selection":{"mode":"visible"},\n"remesh":{\n"method": "FlowTriangles",\n"quality": "Medium"\n},\n"simplify":{"triangleCount": 20000 }\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Merge",\n"Input":{\n"selection":{"mode":"visible"},\n"remesh":{\n"method": "FlowTriangles",\n"quality": "Medium"\n},\n"simplify":{"triangleCount": 20000 }\n},\n"Output":{\n"meshes":[\n{\n"name":"Combined",\n"positions":237757,\n"normals":237757,\n"triangles":459622,\n"size":11221632\n},\n{\n"name":"Remeshed",\n"positions":34311,\n"normals":0,\n"triangles":29738,\n"size":945540\n},\n{\n"name":"Simplified",\n"positions":32415,\n"normals":0,\n"triangles":20000,\n"size":628980\n}\n],\n"scans":3,\n"textures":3\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Merge.Merge.Request": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request", "kind": "class", "doc": "

Client request for the Merge task.

\n"}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.__init__", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Merge.Merge)"}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.Index", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.Type", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.Input", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response", "kind": "class", "doc": "

Server response for the Merge task.

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.__init__", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Merge.Merge,\tOutput: MF.V3.Descriptors.Merge.Merge,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Index", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Type", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Input", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Output", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.State", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Error", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData": {"fullname": "three.MF.V3.Tasks.MergeData", "modulename": "three.MF.V3.Tasks.MergeData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData", "kind": "class", "doc": "

*\nDownload the raw scan data for the current merge process.

\n\n
\n

Request example:

\n
\n\n
{\n\"Task\":{\n\"Index\":1,\n\"Type\":\"MergeData\",\n\"Input\":{\n\"index\":-1,\n\"buffers\":[\"All\"]\n}\n}\n}\n
\n\n
\n

Vertex position buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Position"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex position binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex normal buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":1,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Normal"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex normal binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex texture coordinate buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":2,\n"Size":1038792,\n"Descriptor":{\n"components":[{\n"type":"UV"\n"size":2,\n"offset":0,\n"normalized":false,\n}],\n"stride":2\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex texture coordinate binary data transfer from server [1038792 bytes].

\n
\n\n
\n

Texture image buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":3,\n"Size":3504494,\n"Descriptor":{\n"components":[{\n"type":"Texture"\n"size":0,\n"offset":0,\n"normalized":false,\n}],\n"stride":0\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Texture binary data transfer from server [3504494 bytes].

\n
\n\n
\n

Triangle index buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":4,\n"Size":1996356,\n"Descriptor":{\n"components":[{\n"type":"Triangle"\n"size":1,\n"offset":0,\n"normalized":false,\n}],\n"stride":1\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Triangle index binary data transfer from server [1996356 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"MergeData"\n"Input":{"index":-1,"buffers":["All"]},\n"Output":{\n"buffers":[\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Position"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Normal"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":2,"type":"UV"}],"stride":2},\n{"components":[{"normalized":false,"offset":0,"size":0,"type":"Texture"}],"stride":0},\n{"components":[{"normalized":false,"offset":0,"size":1,"type":"Triangle"}],"stride":1}\n],\n"index":1,\n"name":"Scan-1"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request", "kind": "class", "doc": "

Client request for the MergeData task.

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.ScanData.ScanData)"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.Index", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.Type", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.Input", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response", "kind": "class", "doc": "

Server response for the MergeData task.

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.ScanData.ScanData,\tOutput: MF.V3.Descriptors.ScanData.ScanData,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Index", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Type", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Input", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Output", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.State", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Error", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer", "kind": "class", "doc": "

Server buffer message for the MergeData task.

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.ScanData.ScanData.Buffer)"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup": {"fullname": "three.MF.V3.Tasks.MoveGroup", "modulename": "three.MF.V3.Tasks.MoveGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup", "kind": "class", "doc": "

*\nMove a scan group.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"MoveGroup",\n"Input":[1,2,0]\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"MoveGroup",\n"Input":[1,2,0],\n"Output":{\n"groups":[{\n"index":2,\n"name":"Group 2",\n"groups":[{\n"index":1,\n"name":"Group 1"\n}]\n}],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request", "kind": "class", "doc": "

Client request for the MoveGroup task.

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.Type", "kind": "variable", "doc": "

The requested source and destination move indices.\nAn Array of group indexes where

\n\n
    \n
  1. The first is the index of the _source group_: the group to be moved.
  2. \n
  3. The second is the index of the _parent group_: the group into which the source group is moved.
  4. \n
  5. (Optional) The third is the zero-based order in which the source group is placed the other children of the parent group. Use 0 to insert the source group at the beginning of the parent group's children. If omitted, the source group is inserted at the end of the parent group's children.
  6. \n
\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response", "kind": "class", "doc": "

Server response for the MoveGroup task.

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tInput: List[int] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup": {"fullname": "three.MF.V3.Tasks.NewGroup", "modulename": "three.MF.V3.Tasks.NewGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup", "kind": "class", "doc": "

*\nCreate a new scan group.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewGroup",\n"Input":{\n"parentIndex":0,\n"baseName":"Group"\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewGroup",\n"Input":{\n"parentIndex":0,\n"baseName":"Group"\n},\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Group 1"\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request", "kind": "class", "doc": "

Client request for the NewGroup task.

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.NewGroup.NewGroup = None)"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response", "kind": "class", "doc": "

Server response for the NewGroup task.

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tInput: MF.V3.Settings.NewGroup.NewGroup = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject": {"fullname": "three.MF.V3.Tasks.NewProject", "modulename": "three.MF.V3.Tasks.NewProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject", "kind": "class", "doc": "

*\nCreate a new project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewProject",\n"Input":"New Project Name"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewProject",\n"Input":{\n"name":"New Project Name"\n},\n"Output":{\n"index":5,\n"name":"New Project Name"\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request", "kind": "class", "doc": "

Client request for the NewProject task.

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: str = None)"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.Index", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.Type", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.Input", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response", "kind": "class", "doc": "

Server response for the NewProject task.

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Project.Project = None,\tOutput: MF.V3.Descriptors.Project.Project = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Index", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Type", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Input", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Output", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.State", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Error", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan": {"fullname": "three.MF.V3.Tasks.NewScan", "modulename": "three.MF.V3.Tasks.NewScan", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan", "kind": "class", "doc": "

*\nCapture a new scan.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewScan"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewScan"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n"Output":{\n"groups":[{\n"color":[0.8,0.5,0.6,1.0],\n"index":1,\n"name":"Scan-1",\n"scan":1,\n"rotation":[0.2,0.8,-0.1],\n"translation":[-275,-32,-134],\n"visible":true\n}],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request", "kind": "class", "doc": "

Client request for the NewScan task.

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Scan.Scan = None)"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.Index", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.Type", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.Input", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response", "kind": "class", "doc": "

Server response for the NewScan task.

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Scan.Scan = None,\tOutput: MF.V3.Descriptors.Project.Project.Group = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Index", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Type", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Input", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Output", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.State", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Error", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject": {"fullname": "three.MF.V3.Tasks.OpenProject", "modulename": "three.MF.V3.Tasks.OpenProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject", "kind": "class", "doc": "

*\nCreate a new project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"OpenProject",\n"Input":5\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"OpenProject",\n"Input":5,\n"Output":{\n"index":5,\n"name":"Project 5"\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request", "kind": "class", "doc": "

Client request for the OpenProject task.

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response", "kind": "class", "doc": "

Server response for the OpenProject task.

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tOutput: MF.V3.Descriptors.Project.Project = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings": {"fullname": "three.MF.V3.Tasks.PopSettings", "modulename": "three.MF.V3.Tasks.PopSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings", "kind": "class", "doc": "

*\nPop and restore scanner settings from the stack and optionally apply the popped settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PopSettings",\n"Input":true\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PopSettings",\n"Input":true,\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request", "kind": "class", "doc": "

Client request for the PopSettings task.

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: bool = None)"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response", "kind": "class", "doc": "

Server response for the PopSettings task.

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: bool = None,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings": {"fullname": "three.MF.V3.Tasks.PushSettings", "modulename": "three.MF.V3.Tasks.PushSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings", "kind": "class", "doc": "

*\nPush the current scanner settings to a stack so they can be restored with PopSettings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PushSettings"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PushSettings",\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request", "kind": "class", "doc": "

Client request for the PushSettings task.

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response", "kind": "class", "doc": "

Server response for the PushSettings task.

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot": {"fullname": "three.MF.V3.Tasks.Reboot", "modulename": "three.MF.V3.Tasks.Reboot", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot", "kind": "class", "doc": "

*\nReboot the scanner.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Reboot"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Reboot"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request", "kind": "class", "doc": "

Client request for the Reboot task.

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request.Index", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request.Type", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response", "kind": "class", "doc": "

Server response for the Reboot task.

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.Index", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.Type", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.State", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.Error", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups": {"fullname": "three.MF.V3.Tasks.RemoveGroups", "modulename": "three.MF.V3.Tasks.RemoveGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups", "kind": "class", "doc": "

*\nRemove selected scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveGroups",\n"Input":[1,2]\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveGroups",\n"Input":[1,2],\n"Output":{"groups":[]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request", "kind": "class", "doc": "

Client request for the RemoveGroups task.

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response", "kind": "class", "doc": "

Server response for the RemoveGroups task.

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tInput: List[int] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects": {"fullname": "three.MF.V3.Tasks.RemoveProjects", "modulename": "three.MF.V3.Tasks.RemoveProjects", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects", "kind": "class", "doc": "

*\nRemove selected projects.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveProjects",\n"Input":[1,3,6]\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveProjects",\n"Input":[1,3,6],\n"Output":[\n{"index":2,"modified":[2024,5,12,11,23,17],"name":"Project 2","size":35409834},\n{"index":4,"modified":[2024,5,12,11,2,37],"name":"Project 4","size":175025367},\n{"index":5,"modified":[2024,5,6,17,15,53],"name":"Project 5","size":24314083}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request", "kind": "class", "doc": "

Client request for the RemoveProjects task.

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response", "kind": "class", "doc": "

Server response for the RemoveProjects task.

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: List[int] = None,\tOutput: MF.V3.Descriptors.Project.Project.Brief = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration", "kind": "class", "doc": "

*\nRestore factory calibration.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RestoreFactoryCalibration"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RestoreFactoryCalibration",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request", "kind": "class", "doc": "

Client request for the RestoreFactoryCalibration task.

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response", "kind": "class", "doc": "

Server response for the RestoreFactoryCalibration task.

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable": {"fullname": "three.MF.V3.Tasks.RotateTurntable", "modulename": "three.MF.V3.Tasks.RotateTurntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable", "kind": "class", "doc": "

*\nRotate the turntable.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RotateTurntable",\n"Input":15\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RotateTurntable",\n"Input":15,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request", "kind": "class", "doc": "

Client request for the RotateTurntable task.

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response", "kind": "class", "doc": "

Server response for the RotateTurntable task.

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData": {"fullname": "three.MF.V3.Tasks.ScanData", "modulename": "three.MF.V3.Tasks.ScanData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData", "kind": "class", "doc": "

*\nDownload the raw scan data for a scan in the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n
\n
\n\n
\n

Vertex position buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Position"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex position binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex normal buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":1,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Normal"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex normal binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex texture coordinate buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":2,\n"Size":1038792,\n"Descriptor":{\n"components":[{\n"type":"UV"\n"size":2,\n"offset":0,\n"normalized":false,\n}],\n"stride":2\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex texture coordinate binary data transfer from server [1038792 bytes].

\n
\n\n
\n

Texture image buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":3,\n"Size":3504494,\n"Descriptor":{\n"components":[{\n"type":"Texture"\n"size":0,\n"offset":0,\n"normalized":false,\n}],\n"stride":0\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Texture binary data transfer from server [3504494 bytes].

\n
\n\n
\n

Triangle index buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":4,\n"Size":1996356,\n"Descriptor":{\n"components":[{\n"type":"Triangle"\n"size":1,\n"offset":0,\n"normalized":false,\n}],\n"stride":1\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Triangle index binary data transfer from server [1996356 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{"buffers":["All"],"index":1},\n"Output":{\n"buffers":[\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Position"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Normal"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":2,"type":"UV"}],"stride":2},\n{"components":[{"normalized":false,"offset":0,"size":0,"type":"Texture"}],"stride":0},\n{"components":[{"normalized":false,"offset":0,"size":1,"type":"Triangle"}],"stride":1}\n],\n"index":1,\n"name":"Scan-1"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request", "kind": "class", "doc": "

Client request for the ScanData task.

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.ScanData.ScanData)"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.Index", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.Type", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.Input", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response", "kind": "class", "doc": "

Server response for the ScanData task.

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.ScanData.ScanData,\tOutput: MF.V3.Descriptors.ScanData.ScanData,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Index", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Type", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Input", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Output", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.State", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Error", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer", "kind": "class", "doc": "

Server buffer message for the ScanData task.

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.ScanData.ScanData.Buffer)"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras": {"fullname": "three.MF.V3.Tasks.SetCameras", "modulename": "three.MF.V3.Tasks.SetCameras", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras", "kind": "class", "doc": "

*\nApply camera settings to one or both cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras",\n"Input":{\n"analogGain":256,\n"digitalGain":128,\n"exposure":18000\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras"\n"Input":{\n"analogGain":256,\n"digitalGain":512,\n"exposure":18000\n},\n"Output":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":512},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request", "kind": "class", "doc": "

Client request for the SetCameras task.

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Camera.Camera = None)"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response", "kind": "class", "doc": "

Server response for the SetCameras task.

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Camera.Camera = None,\tOutput: MF.V3.Descriptors.Settings.Camera.Camera = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup": {"fullname": "three.MF.V3.Tasks.SetGroup", "modulename": "three.MF.V3.Tasks.SetGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup", "kind": "class", "doc": "

*\nSet scan group properties.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetGroup",\n"Input":{\n"index":2,\n"name":"Amazing Scan"\n"color":[1,0,0,1],\n"rotation":[0,3.14,0],\n"translation":[0,10,25]\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetGroup",\n"Input":{\n"index":2,\n"name":"Amazing Scan"\n"color":[1,0,0,1],\n"rotation":[0,3.14,0],\n"translation":[0,10,25]\n}\n"Output":{\n"groups":[\n{\n"index":1,\n"scan":1,\n"name":"Scan-1",\n"color":[0.75,0.5,0.2,1.0],\n"rotation":[0.03,0.1,-0.01],\n"translation":[-101,67,-561],\n"visible":true\n},\n{\n"index":2,\n"scan":2,\n"name":"Amazing Scan",\n"color":[1,0,0,1],\n"rotation":[0,3.14,0],\n"translation":[0,10,25],\n"visible":true\n},\n{\n"index":3,\n"scan":3,\n"name":"Scan-3",\n"color":[0.6,0.8,0.9,1.0],\n"visible":true\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request", "kind": "class", "doc": "

Client request for the SetGroup task.

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Group.Group)"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response", "kind": "class", "doc": "

Server response for the SetGroup task.

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Group.Group,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject": {"fullname": "three.MF.V3.Tasks.SetProject", "modulename": "three.MF.V3.Tasks.SetProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject", "kind": "class", "doc": "

*\nApply settings to the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProject",\n"Input":{\n"name":"My Project"\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProject",\n"Input":{\n"name":"My Project"\n},\n"Output":{\n"index":5,\n"name":"My Project",\n"groups":[{\n"color":[0.8,0.5,0.6,1.0],\n"index":1,\n"name":"Scan-1",\n"scan":1,\n"rotation":[0.2,0.8,-0.1],\n"translation":[-275,-32,-134],\n"visible":true\n}],\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request", "kind": "class", "doc": "

Client request for the SetProject task.

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Project.Project = None)"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.Index", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.Type", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.Input", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response", "kind": "class", "doc": "

Server response for the SetProject task.

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Project.Project = None,\tOutput: MF.V3.Descriptors.Project.Project = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Index", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Type", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Input", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Output", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.State", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Error", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector": {"fullname": "three.MF.V3.Tasks.SetProjector", "modulename": "three.MF.V3.Tasks.SetProjector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector", "kind": "class", "doc": "

*\nApply projector settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProjector"\n"Input":{\n"on":true,\n"brightness":0.75,\n"color":[1.0, 1.0, 1.0]\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProjector"\n"Input":{\n"on":true,\n"brightness":0.75,\n"color":[1.0, 1.0, 1.0]\n},\n"Output":{\n"on":{"default":false,"value":true},\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.75}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request", "kind": "class", "doc": "

Client request for the SetProjector task.

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Projector.Projector = None)"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response", "kind": "class", "doc": "

Server response for the SetProjector task.

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Projector.Projector = None,\tOutput: MF.V3.Descriptors.Settings.Projector.Projector = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown": {"fullname": "three.MF.V3.Tasks.Shutdown", "modulename": "three.MF.V3.Tasks.Shutdown", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown", "kind": "class", "doc": "

*\nShutdown the scanner.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Shutdown"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Shutdown"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request", "kind": "class", "doc": "

Client request for the Shutdown task.

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response", "kind": "class", "doc": "

Server response for the Shutdown task.

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth": {"fullname": "three.MF.V3.Tasks.Smooth", "modulename": "three.MF.V3.Tasks.Smooth", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth", "kind": "class", "doc": "

*\nSmooth a set of scans.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Smooth",\n"Input":{\n"selection":{"mode":"visible"},\n"taubin":{"iterations": 3, "lambda": 0.5, "mu": -0.53}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Smooth",\n"Input":{\n"selection":{"mode":"visible"},\n"taubin":{"iterations": 3, "lambda": 0.5, "mu": -0.53}\n},\n"Output":{[1, 2, 3]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request", "kind": "class", "doc": "

Client request for the Smooth task.

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Smooth.Smooth)"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.Index", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.Type", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.Input", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response", "kind": "class", "doc": "

Server response for the Smooth task.

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Smooth.Smooth,\tOutput: List[int] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Index", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Type", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Input", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Output", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.State", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Error", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup": {"fullname": "three.MF.V3.Tasks.SplitGroup", "modulename": "three.MF.V3.Tasks.SplitGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup", "kind": "class", "doc": "

*\nSplit a scan group (ie. move its subgroups to its parent group).

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SplitGroup",\n"Input":0\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SplitGroup",\n"Input":0,\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Group 1",\n},\n{\n"index":2,\n"name":"Group 2"\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request", "kind": "class", "doc": "

Client request for the SplitGroup task.

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response", "kind": "class", "doc": "

Server response for the SplitGroup task.

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo": {"fullname": "three.MF.V3.Tasks.StartVideo", "modulename": "three.MF.V3.Tasks.StartVideo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo", "kind": "class", "doc": "

*\nStart the video stream.

\n\n

The video frames are sent as task buffers associated with the reserved video task index -1. The left and right camera frames are sent in buffer 0 and 1, respectively.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StartVideo"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StartVideo",\n"Output":{\n"codec":"JPEG",\n"format":"YUV420",\n"width":510,\n"height":380\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request", "kind": "class", "doc": "

Client request for the StartVideo task.

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response", "kind": "class", "doc": "

Server response for the StartVideo task.

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Settings.Video.Video = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo": {"fullname": "three.MF.V3.Tasks.StopVideo", "modulename": "three.MF.V3.Tasks.StopVideo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo", "kind": "class", "doc": "

*\nStop the video stream.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StopVideo"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StopVideo",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request", "kind": "class", "doc": "

Client request for the StopVideo task.

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response", "kind": "class", "doc": "

Server response for the StopVideo task.

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo": {"fullname": "three.MF.V3.Tasks.SystemInfo", "modulename": "three.MF.V3.Tasks.SystemInfo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo", "kind": "class", "doc": "

*\nGet system information including the serial number, disk space and installed and available software versions.

\n\n

Request example:

\n\n
{\n\"Task\":{\n\"Index\":1,\n\"Type\":\"SystemInfo\",\n\"Input\":{\n\"installed\":[\"server\",\"frontend\"],\n\"available\":[\"server\",\"frontend\"]\n}\n}\n}\n
\n\n

Response example:

\n\n
{\n\"Task\":{\n\"Index\":1,\n\"Type\":\"SystemInfo\"\n\"Input\":{\n\"installed\":[\"server\",\"frontend\"],\n\"available\":[\"server\",\"frontend\"]\n}\n\"Output\":{\n\"serialNumber\":\"1000000012345678\",\n\"diskSpace\":{\"available\":8523210752,\"capacity\":15082610688},\n\"software:{\n\"installed\":[\n{\n\"name\":\"server\",\n\"version\":{\n\"major\":2,\n\"minor\":21,\n\"patch\":119,\n\"string\":\"2.21.119\"\n}\n},\n{\n\"name\":\"frontend\",\n\"version\":{\n\"major\":2,\n\"minor\":14,\n\"patch\":39,\n\"string\":\"2.14.39\"\n}\n}\n},\n]\n},\n\"State\":\"Completed\"\n}\n}\n
\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request", "kind": "class", "doc": "

Client request for the SystemInfo task.

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Software.Software = None)"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response", "kind": "class", "doc": "

Server response for the SystemInfo task.

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.System.System,\tInput: MF.V3.Settings.Software.Software = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup": {"fullname": "three.MF.V3.Tasks.TransformGroup", "modulename": "three.MF.V3.Tasks.TransformGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup", "kind": "class", "doc": "

*\nApply a rigid transformation to a group.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TransformGroup",\n"Input":{\n"index":1,\n"rotation":[0.5, 1.0, 1.5],\n"translation":[10, 20, 30]\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TransformGroup",\n"Input":{\n"index":1,\n"rotation":[0.5, 1.0, 1.5],\n"translation":[10, 20, 30]\n},\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Group 1",\n"rotation":[0.5, 1.0, 1.5],\n"translation":[10, 20, 30]\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request", "kind": "class", "doc": "

Client request for the TransformGroup task.

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Group.Group)"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response", "kind": "class", "doc": "

Server response for the TransformGroup task.

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Group.Group,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration": {"fullname": "three.MF.V3.Tasks.TurntableCalibration", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration", "kind": "class", "doc": "

*\nGet the turntable calibration descriptor.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TurntableCalibration"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TurntableCalibration",\n"Output":{\n"date":[2024,4,27,16,57,35],\n"quality":"Excellent",\n"focus":[300,320]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request", "kind": "class", "doc": "

Client request for the TurntableCalibration task.

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response", "kind": "class", "doc": "

Server response for the TurntableCalibration task.

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.Turntable = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings": {"fullname": "three.MF.V3.Tasks.UpdateSettings", "modulename": "three.MF.V3.Tasks.UpdateSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings", "kind": "class", "doc": "

*\nUpdate scanner settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UpdateSettings",\n"Input":{\n"camera":{\n"analogGain":256,\n"digitalGain":320,\n"exposure":18000\n}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UpdateSettings",\n"Input":{\n"camera":{\n"analogGain":256,\n"digitalGain":320,\n"exposure":18000\n}\n},\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request", "kind": "class", "doc": "

Client request for the UpdateSettings task.

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Scanner.Scanner)"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response", "kind": "class", "doc": "

Server response for the UpdateSettings task.

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Scanner.Scanner,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject": {"fullname": "three.MF.V3.Tasks.UploadProject", "modulename": "three.MF.V3.Tasks.UploadProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject", "kind": "class", "doc": "

*\nUpload a project to the scanner. The project must be archived in a ZIP file.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UploadProject"\n}\n}\n
\n
\n\n
\n

Buffer message from client.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":15682096,\n"Task":{\n"Index":1,\n"Type":"UploadProject"\n}\n}\n}\n
\n
\n\n
\n

Binary data transfer from client: The project zip file [15682096 bytes].\n Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UploadProject"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request", "kind": "class", "doc": "

Client request for the UploadProject task.

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response", "kind": "class", "doc": "

Server response for the UploadProject task.

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer", "kind": "class", "doc": "

Client buffer message for the UploadProject task.

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Three": {"fullname": "three.MF.V3.Three", "modulename": "three.MF.V3.Three", "kind": "module", "doc": "

\n"}, "three.MF.V3.Three.list_network_interfaces": {"fullname": "three.MF.V3.Three.list_network_interfaces", "modulename": "three.MF.V3.Three", "qualname": "list_network_interfaces", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_wifi": {"fullname": "three.MF.V3.Three.list_wifi", "modulename": "three.MF.V3.Three", "qualname": "list_wifi", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.connect_wifi": {"fullname": "three.MF.V3.Three.connect_wifi", "modulename": "three.MF.V3.Three", "qualname": "connect_wifi", "kind": "function", "doc": "

Connect to a wifi network.

\n", "signature": "(self, ssid: str, password: str) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.forget_wifi": {"fullname": "three.MF.V3.Three.forget_wifi", "modulename": "three.MF.V3.Three", "qualname": "forget_wifi", "kind": "function", "doc": "

Forget all wifi connections.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_settings": {"fullname": "three.MF.V3.Three.list_settings", "modulename": "three.MF.V3.Three", "qualname": "list_settings", "kind": "function", "doc": "

Get scanner settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.push_settings": {"fullname": "three.MF.V3.Three.push_settings", "modulename": "three.MF.V3.Three", "qualname": "push_settings", "kind": "function", "doc": "

Push the current scanner settings to the settings stack.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.pop_settings": {"fullname": "three.MF.V3.Three.pop_settings", "modulename": "three.MF.V3.Three", "qualname": "pop_settings", "kind": "function", "doc": "

Pop and restore scanner settings from the settings stack.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.update_settings": {"fullname": "three.MF.V3.Three.update_settings", "modulename": "three.MF.V3.Three", "qualname": "update_settings", "kind": "function", "doc": "

Update scanner settings.

\n", "signature": "(\tself,\tadvanced: MF.V3.Settings.Advanced.Advanced = None,\tcamera: MF.V3.Settings.Camera.Camera = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\ti18n: MF.V3.Settings.I18n.I18n = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tstyle: MF.V3.Settings.Style.Style = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\ttutorials: MF.V3.Settings.Tutorials.Tutorials = None,\tviewer: MF.V3.Settings.Viewer.Viewer = None,\tsoftware: MF.V3.Settings.Software.Software = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_projects": {"fullname": "three.MF.V3.Three.list_projects", "modulename": "three.MF.V3.Three", "qualname": "list_projects", "kind": "function", "doc": "

List all projects.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.download_project": {"fullname": "three.MF.V3.Three.download_project", "modulename": "three.MF.V3.Three", "qualname": "download_project", "kind": "function", "doc": "

Download a project from the scanner.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.upload_project": {"fullname": "three.MF.V3.Three.upload_project", "modulename": "three.MF.V3.Three", "qualname": "upload_project", "kind": "function", "doc": "

Upload a project to the scanner.

\n", "signature": "(self, buffer: bytes) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.new_project": {"fullname": "three.MF.V3.Three.new_project", "modulename": "three.MF.V3.Three", "qualname": "new_project", "kind": "function", "doc": "

Create a new project.

\n", "signature": "(self, Input: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.open_project": {"fullname": "three.MF.V3.Three.open_project", "modulename": "three.MF.V3.Three", "qualname": "open_project", "kind": "function", "doc": "

Open an existing project.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.clear_settings": {"fullname": "three.MF.V3.Three.clear_settings", "modulename": "three.MF.V3.Three", "qualname": "clear_settings", "kind": "function", "doc": "

Clear scanner settings and restore the default values.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.close_project": {"fullname": "three.MF.V3.Three.close_project", "modulename": "three.MF.V3.Three", "qualname": "close_project", "kind": "function", "doc": "

Close the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.copy_groups": {"fullname": "three.MF.V3.Three.copy_groups", "modulename": "three.MF.V3.Three", "qualname": "copy_groups", "kind": "function", "doc": "

Copy a set of scan groups in the current open project.

\n", "signature": "(\tself,\tsourceIndexes: List[int] = None,\ttargetIndex: int = None,\tchildPosition: int = None,\tnameSuffix: str = None,\tenumerate: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.remove_projects": {"fullname": "three.MF.V3.Three.remove_projects", "modulename": "three.MF.V3.Three", "qualname": "remove_projects", "kind": "function", "doc": "

Remove selected projects.

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_groups": {"fullname": "three.MF.V3.Three.list_groups", "modulename": "three.MF.V3.Three", "qualname": "list_groups", "kind": "function", "doc": "

List the scan groups in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_scans": {"fullname": "three.MF.V3.Three.list_scans", "modulename": "three.MF.V3.Three", "qualname": "list_scans", "kind": "function", "doc": "

List the scans in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.scan_data": {"fullname": "three.MF.V3.Three.scan_data", "modulename": "three.MF.V3.Three", "qualname": "scan_data", "kind": "function", "doc": "

Download the raw scan data for a scan in the current open project.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: List[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: List[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_project": {"fullname": "three.MF.V3.Three.set_project", "modulename": "three.MF.V3.Three", "qualname": "set_project", "kind": "function", "doc": "

Apply settings to the current open project.

\n", "signature": "(self, index: int = None, name: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_group": {"fullname": "three.MF.V3.Three.set_group", "modulename": "three.MF.V3.Three", "qualname": "set_group", "kind": "function", "doc": "

Set scan group properties.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.new_group": {"fullname": "three.MF.V3.Three.new_group", "modulename": "three.MF.V3.Three", "qualname": "new_group", "kind": "function", "doc": "

Create a new scan group.

\n", "signature": "(\tself,\tparentIndex: int = None,\tbaseName: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.move_group": {"fullname": "three.MF.V3.Three.move_group", "modulename": "three.MF.V3.Three", "qualname": "move_group", "kind": "function", "doc": "

Move a scan group.

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.factory_reset": {"fullname": "three.MF.V3.Three.factory_reset", "modulename": "three.MF.V3.Three", "qualname": "factory_reset", "kind": "function", "doc": "

Reset the scanner to factory settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.flatten_group": {"fullname": "three.MF.V3.Three.flatten_group", "modulename": "three.MF.V3.Three", "qualname": "flatten_group", "kind": "function", "doc": "

Flatten a scan group such that it only consists of single scans.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.split_group": {"fullname": "three.MF.V3.Three.split_group", "modulename": "three.MF.V3.Three", "qualname": "split_group", "kind": "function", "doc": "

Split a scan group (ie. move its subgroups to its parent group).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.transform_group": {"fullname": "three.MF.V3.Three.transform_group", "modulename": "three.MF.V3.Three", "qualname": "transform_group", "kind": "function", "doc": "

Apply a rigid transformation to a group.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.remove_groups": {"fullname": "three.MF.V3.Three.remove_groups", "modulename": "three.MF.V3.Three", "qualname": "remove_groups", "kind": "function", "doc": "

Remove selected scan groups.

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.bounding_box": {"fullname": "three.MF.V3.Three.bounding_box", "modulename": "three.MF.V3.Three", "qualname": "bounding_box", "kind": "function", "doc": "

Get the bounding box of a set of scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection,\taxisAligned: bool) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.align": {"fullname": "three.MF.V3.Three.align", "modulename": "three.MF.V3.Three", "qualname": "align", "kind": "function", "doc": "

Align two scan groups.

\n", "signature": "(\tself,\tsource: int,\ttarget: int,\trough: MF.V3.Settings.Align.Align.Rough = None,\tfine: MF.V3.Settings.Align.Align.Fine = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.smooth": {"fullname": "three.MF.V3.Three.smooth", "modulename": "three.MF.V3.Three", "qualname": "smooth", "kind": "function", "doc": "

Smooth a set of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttaubin: MF.V3.Settings.Smooth.Smooth.Taubin = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.heat_map": {"fullname": "three.MF.V3.Three.heat_map", "modulename": "three.MF.V3.Three", "qualname": "heat_map", "kind": "function", "doc": "

Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.

\n", "signature": "(\tself,\tsources: List[int] = None,\ttargets: List[int] = None,\toutlierDistance: float = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.merge": {"fullname": "three.MF.V3.Three.merge", "modulename": "three.MF.V3.Three", "qualname": "merge", "kind": "function", "doc": "

Merge two or more scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\tremesh: MF.V3.Settings.Merge.Merge.Remesh = None,\tsimplify: MF.V3.Settings.Merge.Merge.Simplify = None,\ttexturize: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.merge_data": {"fullname": "three.MF.V3.Three.merge_data", "modulename": "three.MF.V3.Three", "qualname": "merge_data", "kind": "function", "doc": "

Download the raw scan data for the current merge process.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: List[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: List[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.add_merge_to_project": {"fullname": "three.MF.V3.Three.add_merge_to_project", "modulename": "three.MF.V3.Three", "qualname": "add_merge_to_project", "kind": "function", "doc": "

Add a merged scan to the current project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.import_file": {"fullname": "three.MF.V3.Three.import_file", "modulename": "three.MF.V3.Three", "qualname": "import_file", "kind": "function", "doc": "

Import a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file.

\n", "signature": "(\tself,\tname: str = None,\tscale: float = None,\tunit: MF.V3.Settings.Import.Import.Unit = None,\tcenter: bool = None,\tgroupIndex: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_export_formats": {"fullname": "three.MF.V3.Three.list_export_formats", "modulename": "three.MF.V3.Three", "qualname": "list_export_formats", "kind": "function", "doc": "

List all export formats.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export": {"fullname": "three.MF.V3.Three.export", "modulename": "three.MF.V3.Three", "qualname": "export", "kind": "function", "doc": "

Export a group of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_heat_map": {"fullname": "three.MF.V3.Three.export_heat_map", "modulename": "three.MF.V3.Three", "qualname": "export_heat_map", "kind": "function", "doc": "

Export a mesh with vertex colors generated by the 'HeatMap' task.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_merge": {"fullname": "three.MF.V3.Three.export_merge", "modulename": "three.MF.V3.Three", "qualname": "export_merge", "kind": "function", "doc": "

Export a merged scan.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_logs": {"fullname": "three.MF.V3.Three.export_logs", "modulename": "three.MF.V3.Three", "qualname": "export_logs", "kind": "function", "doc": "

Export scanner logs.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_factory_calibration_logs": {"fullname": "three.MF.V3.Three.export_factory_calibration_logs", "modulename": "three.MF.V3.Three", "qualname": "export_factory_calibration_logs", "kind": "function", "doc": "

Export factory calibration logs.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.has_cameras": {"fullname": "three.MF.V3.Three.has_cameras", "modulename": "three.MF.V3.Three", "qualname": "has_cameras", "kind": "function", "doc": "

Check if the scanner has working cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.has_projector": {"fullname": "three.MF.V3.Three.has_projector", "modulename": "three.MF.V3.Three", "qualname": "has_projector", "kind": "function", "doc": "

Check if the scanner has a working projector.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.has_turntable": {"fullname": "three.MF.V3.Three.has_turntable", "modulename": "three.MF.V3.Three", "qualname": "has_turntable", "kind": "function", "doc": "

Check if the scanner is connected to a working turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.system_info": {"fullname": "three.MF.V3.Three.system_info", "modulename": "three.MF.V3.Three", "qualname": "system_info", "kind": "function", "doc": "

Get system information.

\n", "signature": "(\tself,\tupdateMajor: bool = None,\tupdateNightly: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.camera_calibration": {"fullname": "three.MF.V3.Three.camera_calibration", "modulename": "three.MF.V3.Three", "qualname": "camera_calibration", "kind": "function", "doc": "

Get the camera calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.turntable_calibration": {"fullname": "three.MF.V3.Three.turntable_calibration", "modulename": "three.MF.V3.Three", "qualname": "turntable_calibration", "kind": "function", "doc": "

Get the turntable calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.calibration_capture_targets": {"fullname": "three.MF.V3.Three.calibration_capture_targets", "modulename": "three.MF.V3.Three", "qualname": "calibration_capture_targets", "kind": "function", "doc": "

Get the calibration capture target for each camera calibration capture.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.calibrate_cameras": {"fullname": "three.MF.V3.Three.calibrate_cameras", "modulename": "three.MF.V3.Three", "qualname": "calibrate_cameras", "kind": "function", "doc": "

Calibrate the cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.calibrate_turntable": {"fullname": "three.MF.V3.Three.calibrate_turntable", "modulename": "three.MF.V3.Three", "qualname": "calibrate_turntable", "kind": "function", "doc": "

Calibrate the turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.detect_calibration_card": {"fullname": "three.MF.V3.Three.detect_calibration_card", "modulename": "three.MF.V3.Three", "qualname": "detect_calibration_card", "kind": "function", "doc": "

Detect the calibration card on one or both cameras.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.restore_factory_calibration": {"fullname": "three.MF.V3.Three.restore_factory_calibration", "modulename": "three.MF.V3.Three", "qualname": "restore_factory_calibration", "kind": "function", "doc": "

Restore factory calibration.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.start_video": {"fullname": "three.MF.V3.Three.start_video", "modulename": "three.MF.V3.Three", "qualname": "start_video", "kind": "function", "doc": "

Start the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.stop_video": {"fullname": "three.MF.V3.Three.stop_video", "modulename": "three.MF.V3.Three", "qualname": "stop_video", "kind": "function", "doc": "

Stop the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_cameras": {"fullname": "three.MF.V3.Three.set_cameras", "modulename": "three.MF.V3.Three", "qualname": "set_cameras", "kind": "function", "doc": "

Apply camera settings to one or both cameras.

\n", "signature": "(\tself,\tselection: List[int] = None,\tautoExposure: bool = None,\texposure: int = None,\tanalogGain: float = None,\tdigitalGain: int = None,\tfocus: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_projector": {"fullname": "three.MF.V3.Three.set_projector", "modulename": "three.MF.V3.Three", "qualname": "set_projector", "kind": "function", "doc": "

Apply projector settings.

\n", "signature": "(\tself,\ton: bool = None,\tbrightness: float = None,\tpattern: MF.V3.Settings.Projector.Projector.Pattern = None,\timage: MF.V3.Settings.Projector.Projector.Image = None,\tcolor: List[float] = None,\tbuffer: bytes = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.auto_focus": {"fullname": "three.MF.V3.Three.auto_focus", "modulename": "three.MF.V3.Three", "qualname": "auto_focus", "kind": "function", "doc": "

Auto focus one or both cameras.

\n", "signature": "(\tself,\tapplyAll: bool,\tcameras: List[MF.V3.Settings.AutoFocus.AutoFocus.Camera] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.rotate_turntable": {"fullname": "three.MF.V3.Three.rotate_turntable", "modulename": "three.MF.V3.Three", "qualname": "rotate_turntable", "kind": "function", "doc": "

Rotate the turntable.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.new_scan": {"fullname": "three.MF.V3.Three.new_scan", "modulename": "three.MF.V3.Three", "qualname": "new_scan", "kind": "function", "doc": "

Capture a new scan.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.capture_image": {"fullname": "three.MF.V3.Three.capture_image", "modulename": "three.MF.V3.Three", "qualname": "capture_image", "kind": "function", "doc": "

Capture a single Image.

\n", "signature": "(\tself,\tselection: List[int] = None,\tcodec: MF.V3.Settings.CaptureImage.CaptureImage.Codec = None,\tgrayscale: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.depth_map": {"fullname": "three.MF.V3.Three.depth_map", "modulename": "three.MF.V3.Three", "qualname": "depth_map", "kind": "function", "doc": "

Capture a depth map.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.reboot": {"fullname": "three.MF.V3.Three.reboot", "modulename": "three.MF.V3.Three", "qualname": "reboot", "kind": "function", "doc": "

Reboot the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.shutdown": {"fullname": "three.MF.V3.Three.shutdown", "modulename": "three.MF.V3.Three", "qualname": "shutdown", "kind": "function", "doc": "

Shutdown the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner": {"fullname": "three.scanner", "modulename": "three.scanner", "kind": "module", "doc": "

\n"}, "three.scanner.Scanner": {"fullname": "three.scanner.Scanner", "modulename": "three.scanner", "qualname": "Scanner", "kind": "class", "doc": "

Main class to manage and communicate with the Matter and Form THREE 3D Scanner via websocket.

\n\n

Attributes:\n * OnTask (Optional[Callable[[Task], None]]): Callback for any task related messages, default is None. Will fire for task complete, progress, and error.\n * OnMessage (Optional[Callable[[str], None]]): Callback function to handle messages, default is None. Messages are any calls related to the system that are not tasks or buffers. Eg. {\"Message\":{\"HasTurntable\":true}}\n * OnBuffer (Optional[Callable[[Any, bytes], None]]): Callback Function to handle buffer data, default is None. Buffers can be image or scan data. These are binary formats that are sent separately from tasks. Buffers will contain a header that describes the buffer data size. Please note that websocket buffers are limited in size and need to be sent in chunks.

\n"}, "three.scanner.Scanner.__init__": {"fullname": "three.scanner.Scanner.__init__", "modulename": "three.scanner", "qualname": "Scanner.__init__", "kind": "function", "doc": "

Initializes the Scanner object.

\n\n

Args:\n * OnTask (Optional[Callable[[Task], None]]): Callback for any task related messages, default is None. Will fire for task complete, progress, and error.\n * OnMessage (Optional[Callable[[str], None]]): Callback function to handle messages, default is None. Messages are any calls related to the system that are not tasks or buffers. Eg. {\"Message\":{\"HasTurntable\":true}}\n * OnBuffer (Optional[Callable[[Any, bytes], None]]): Callback Function to handle buffer data, default is None. Buffers can be image or scan data. These are binary formats that are sent separately from tasks. Buffers will contain a header that describes the buffer data size. Please note that websocket buffers are limited in size and need to be sent in chunks.

\n", "signature": "(\tOnTask: Optional[Callable[[MF.V3.Task.Task], NoneType]] = None,\tOnMessage: Optional[Callable[[str], NoneType]] = None,\tOnBuffer: Optional[Callable[[Any, bytes], NoneType]] = None)"}, "three.scanner.Scanner.OnTask": {"fullname": "three.scanner.Scanner.OnTask", "modulename": "three.scanner", "qualname": "Scanner.OnTask", "kind": "variable", "doc": "

\n"}, "three.scanner.Scanner.OnMessage": {"fullname": "three.scanner.Scanner.OnMessage", "modulename": "three.scanner", "qualname": "Scanner.OnMessage", "kind": "variable", "doc": "

\n"}, "three.scanner.Scanner.OnBuffer": {"fullname": "three.scanner.Scanner.OnBuffer", "modulename": "three.scanner", "qualname": "Scanner.OnBuffer", "kind": "variable", "doc": "

\n"}, "three.scanner.Scanner.Connect": {"fullname": "three.scanner.Scanner.Connect", "modulename": "three.scanner", "qualname": "Scanner.Connect", "kind": "function", "doc": "

Attempts to connect to the scanner using the specified URI and timeout.

\n\n

Args:\n * URI (str): The URI of the websocket server.\n * timeoutSec (int): Timeout in seconds, default is 5.

\n\n

Returns:\n bool: True if connection is successful, raises Exception otherwise.

\n\n

Raises:\n Exception: If connection fails within the timeout or due to an error.

\n", "signature": "(self, URI: str, timeoutSec=5) -> bool:", "funcdef": "def"}, "three.scanner.Scanner.Disconnect": {"fullname": "three.scanner.Scanner.Disconnect", "modulename": "three.scanner", "qualname": "Scanner.Disconnect", "kind": "function", "doc": "

Close the websocket connection.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "three.scanner.Scanner.IsConnected": {"fullname": "three.scanner.Scanner.IsConnected", "modulename": "three.scanner", "qualname": "Scanner.IsConnected", "kind": "function", "doc": "

Checks if the scanner is currently connected.

\n\n

Returns:\n bool: True if connected, False otherwise.

\n", "signature": "(self) -> bool:", "funcdef": "def"}, "three.scanner.Scanner.SendTask": {"fullname": "three.scanner.Scanner.SendTask", "modulename": "three.scanner", "qualname": "Scanner.SendTask", "kind": "function", "doc": "

Sends a task to the scanner.\nTasks are general control requests for the scanner. (eg. Camera exposure, or Get Image)

\n\n

Creates a task, serializes it, and sends it via the websocket.

\n\n

Args:\n * task (Task): The task to send.\n * buffer (bytes): The buffer data to send, default is None.

\n\n

Returns:\n Any: The task object that was sent.

\n\n

Raises:\n AssertionError: If the connection is not established.

\n", "signature": "(self, task, buffer: bytes = None) -> Any:", "funcdef": "def"}, "three.scanner.Scanner.add_merge_to_project": {"fullname": "three.scanner.Scanner.add_merge_to_project", "modulename": "three.scanner", "qualname": "Scanner.add_merge_to_project", "kind": "function", "doc": "

Add a merged scan to the current project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.align": {"fullname": "three.scanner.Scanner.align", "modulename": "three.scanner", "qualname": "Scanner.align", "kind": "function", "doc": "

Align two scan groups.

\n", "signature": "(\tself,\tsource: int,\ttarget: int,\trough: MF.V3.Settings.Align.Align.Rough = None,\tfine: MF.V3.Settings.Align.Align.Fine = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.auto_focus": {"fullname": "three.scanner.Scanner.auto_focus", "modulename": "three.scanner", "qualname": "Scanner.auto_focus", "kind": "function", "doc": "

Auto focus one or both cameras.

\n", "signature": "(\tself,\tapplyAll: bool,\tcameras: list[MF.V3.Settings.AutoFocus.AutoFocus.Camera] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.bounding_box": {"fullname": "three.scanner.Scanner.bounding_box", "modulename": "three.scanner", "qualname": "Scanner.bounding_box", "kind": "function", "doc": "

Get the bounding box of a set of scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection,\taxisAligned: bool) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.calibrate_cameras": {"fullname": "three.scanner.Scanner.calibrate_cameras", "modulename": "three.scanner", "qualname": "Scanner.calibrate_cameras", "kind": "function", "doc": "

Calibrate the cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.calibrate_turntable": {"fullname": "three.scanner.Scanner.calibrate_turntable", "modulename": "three.scanner", "qualname": "Scanner.calibrate_turntable", "kind": "function", "doc": "

Calibrate the turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.calibration_capture_targets": {"fullname": "three.scanner.Scanner.calibration_capture_targets", "modulename": "three.scanner", "qualname": "Scanner.calibration_capture_targets", "kind": "function", "doc": "

Get the calibration capture target for each camera calibration capture.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.camera_calibration": {"fullname": "three.scanner.Scanner.camera_calibration", "modulename": "three.scanner", "qualname": "Scanner.camera_calibration", "kind": "function", "doc": "

Get the camera calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.capture_image": {"fullname": "three.scanner.Scanner.capture_image", "modulename": "three.scanner", "qualname": "Scanner.capture_image", "kind": "function", "doc": "

Capture a single Image.

\n", "signature": "(\tself,\tselection: list[int] = None,\tcodec: MF.V3.Settings.CaptureImage.CaptureImage.Codec = None,\tgrayscale: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.clear_settings": {"fullname": "three.scanner.Scanner.clear_settings", "modulename": "three.scanner", "qualname": "Scanner.clear_settings", "kind": "function", "doc": "

Clear scanner settings and restore the default values.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.close_project": {"fullname": "three.scanner.Scanner.close_project", "modulename": "three.scanner", "qualname": "Scanner.close_project", "kind": "function", "doc": "

Close the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.connect_wifi": {"fullname": "three.scanner.Scanner.connect_wifi", "modulename": "three.scanner", "qualname": "Scanner.connect_wifi", "kind": "function", "doc": "

Connect to a wifi network.

\n", "signature": "(self, ssid: str, password: str) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.copy_groups": {"fullname": "three.scanner.Scanner.copy_groups", "modulename": "three.scanner", "qualname": "Scanner.copy_groups", "kind": "function", "doc": "

Copy a set of scan groups in the current open project.

\n", "signature": "(\tself,\tsourceIndexes: list[int] = None,\ttargetIndex: int = None,\tchildPosition: int = None,\tnameSuffix: str = None,\tenumerate: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.depth_map": {"fullname": "three.scanner.Scanner.depth_map", "modulename": "three.scanner", "qualname": "Scanner.depth_map", "kind": "function", "doc": "

Capture a depth map.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.detect_calibration_card": {"fullname": "three.scanner.Scanner.detect_calibration_card", "modulename": "three.scanner", "qualname": "Scanner.detect_calibration_card", "kind": "function", "doc": "

Detect the calibration card on one or both cameras.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.download_project": {"fullname": "three.scanner.Scanner.download_project", "modulename": "three.scanner", "qualname": "Scanner.download_project", "kind": "function", "doc": "

Download a project from the scanner.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export": {"fullname": "three.scanner.Scanner.export", "modulename": "three.scanner", "qualname": "Scanner.export", "kind": "function", "doc": "

Export a group of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_factory_calibration_logs": {"fullname": "three.scanner.Scanner.export_factory_calibration_logs", "modulename": "three.scanner", "qualname": "Scanner.export_factory_calibration_logs", "kind": "function", "doc": "

Export factory calibration logs.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_heat_map": {"fullname": "three.scanner.Scanner.export_heat_map", "modulename": "three.scanner", "qualname": "Scanner.export_heat_map", "kind": "function", "doc": "

Export a mesh with vertex colors generated by the 'HeatMap' task.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_logs": {"fullname": "three.scanner.Scanner.export_logs", "modulename": "three.scanner", "qualname": "Scanner.export_logs", "kind": "function", "doc": "

Export scanner logs.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_merge": {"fullname": "three.scanner.Scanner.export_merge", "modulename": "three.scanner", "qualname": "Scanner.export_merge", "kind": "function", "doc": "

Export a merged scan.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.factory_reset": {"fullname": "three.scanner.Scanner.factory_reset", "modulename": "three.scanner", "qualname": "Scanner.factory_reset", "kind": "function", "doc": "

Reset the scanner to factory settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.flatten_group": {"fullname": "three.scanner.Scanner.flatten_group", "modulename": "three.scanner", "qualname": "Scanner.flatten_group", "kind": "function", "doc": "

Flatten a scan group such that it only consists of single scans.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.forget_wifi": {"fullname": "three.scanner.Scanner.forget_wifi", "modulename": "three.scanner", "qualname": "Scanner.forget_wifi", "kind": "function", "doc": "

Forget all wifi connections.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.has_cameras": {"fullname": "three.scanner.Scanner.has_cameras", "modulename": "three.scanner", "qualname": "Scanner.has_cameras", "kind": "function", "doc": "

Check if the scanner has working cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.has_projector": {"fullname": "three.scanner.Scanner.has_projector", "modulename": "three.scanner", "qualname": "Scanner.has_projector", "kind": "function", "doc": "

Check if the scanner has a working projector.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.has_turntable": {"fullname": "three.scanner.Scanner.has_turntable", "modulename": "three.scanner", "qualname": "Scanner.has_turntable", "kind": "function", "doc": "

Check if the scanner is connected to a working turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.heat_map": {"fullname": "three.scanner.Scanner.heat_map", "modulename": "three.scanner", "qualname": "Scanner.heat_map", "kind": "function", "doc": "

Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.

\n", "signature": "(\tself,\tsources: list[int] = None,\ttargets: list[int] = None,\toutlierDistance: float = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.import_file": {"fullname": "three.scanner.Scanner.import_file", "modulename": "three.scanner", "qualname": "Scanner.import_file", "kind": "function", "doc": "

Import a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file.

\n", "signature": "(\tself,\tname: str = None,\tscale: float = None,\tunit: MF.V3.Settings.Import.Import.Unit = None,\tcenter: bool = None,\tgroupIndex: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_export_formats": {"fullname": "three.scanner.Scanner.list_export_formats", "modulename": "three.scanner", "qualname": "Scanner.list_export_formats", "kind": "function", "doc": "

List all export formats.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_groups": {"fullname": "three.scanner.Scanner.list_groups", "modulename": "three.scanner", "qualname": "Scanner.list_groups", "kind": "function", "doc": "

List the scan groups in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_network_interfaces": {"fullname": "three.scanner.Scanner.list_network_interfaces", "modulename": "three.scanner", "qualname": "Scanner.list_network_interfaces", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_projects": {"fullname": "three.scanner.Scanner.list_projects", "modulename": "three.scanner", "qualname": "Scanner.list_projects", "kind": "function", "doc": "

List all projects.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_scans": {"fullname": "three.scanner.Scanner.list_scans", "modulename": "three.scanner", "qualname": "Scanner.list_scans", "kind": "function", "doc": "

List the scans in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_settings": {"fullname": "three.scanner.Scanner.list_settings", "modulename": "three.scanner", "qualname": "Scanner.list_settings", "kind": "function", "doc": "

Get scanner settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_wifi": {"fullname": "three.scanner.Scanner.list_wifi", "modulename": "three.scanner", "qualname": "Scanner.list_wifi", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.merge": {"fullname": "three.scanner.Scanner.merge", "modulename": "three.scanner", "qualname": "Scanner.merge", "kind": "function", "doc": "

Merge two or more scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\tremesh: MF.V3.Settings.Merge.Merge.Remesh = None,\tsimplify: MF.V3.Settings.Merge.Merge.Simplify = None,\ttexturize: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.merge_data": {"fullname": "three.scanner.Scanner.merge_data", "modulename": "three.scanner", "qualname": "Scanner.merge_data", "kind": "function", "doc": "

Download the raw scan data for the current merge process.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: list[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: list[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.move_group": {"fullname": "three.scanner.Scanner.move_group", "modulename": "three.scanner", "qualname": "Scanner.move_group", "kind": "function", "doc": "

Move a scan group.

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.new_group": {"fullname": "three.scanner.Scanner.new_group", "modulename": "three.scanner", "qualname": "Scanner.new_group", "kind": "function", "doc": "

Create a new scan group.

\n", "signature": "(\tself,\tparentIndex: int = None,\tbaseName: str = None,\tcolor: list[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: list[float] = None,\ttranslation: list[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.new_project": {"fullname": "three.scanner.Scanner.new_project", "modulename": "three.scanner", "qualname": "Scanner.new_project", "kind": "function", "doc": "

Create a new project.

\n", "signature": "(self, Input: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.new_scan": {"fullname": "three.scanner.Scanner.new_scan", "modulename": "three.scanner", "qualname": "Scanner.new_scan", "kind": "function", "doc": "

Capture a new scan.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.open_project": {"fullname": "three.scanner.Scanner.open_project", "modulename": "three.scanner", "qualname": "Scanner.open_project", "kind": "function", "doc": "

Open an existing project.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.pop_settings": {"fullname": "three.scanner.Scanner.pop_settings", "modulename": "three.scanner", "qualname": "Scanner.pop_settings", "kind": "function", "doc": "

Pop and restore scanner settings from the settings stack.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.push_settings": {"fullname": "three.scanner.Scanner.push_settings", "modulename": "three.scanner", "qualname": "Scanner.push_settings", "kind": "function", "doc": "

Push the current scanner settings to the settings stack.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.reboot": {"fullname": "three.scanner.Scanner.reboot", "modulename": "three.scanner", "qualname": "Scanner.reboot", "kind": "function", "doc": "

Reboot the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.remove_groups": {"fullname": "three.scanner.Scanner.remove_groups", "modulename": "three.scanner", "qualname": "Scanner.remove_groups", "kind": "function", "doc": "

Remove selected scan groups.

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.remove_projects": {"fullname": "three.scanner.Scanner.remove_projects", "modulename": "three.scanner", "qualname": "Scanner.remove_projects", "kind": "function", "doc": "

Remove selected projects.

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.restore_factory_calibration": {"fullname": "three.scanner.Scanner.restore_factory_calibration", "modulename": "three.scanner", "qualname": "Scanner.restore_factory_calibration", "kind": "function", "doc": "

Restore factory calibration.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.rotate_turntable": {"fullname": "three.scanner.Scanner.rotate_turntable", "modulename": "three.scanner", "qualname": "Scanner.rotate_turntable", "kind": "function", "doc": "

Rotate the turntable.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.scan_data": {"fullname": "three.scanner.Scanner.scan_data", "modulename": "three.scanner", "qualname": "Scanner.scan_data", "kind": "function", "doc": "

Download the raw scan data for a scan in the current open project.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: list[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: list[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_cameras": {"fullname": "three.scanner.Scanner.set_cameras", "modulename": "three.scanner", "qualname": "Scanner.set_cameras", "kind": "function", "doc": "

Apply camera settings to one or both cameras.

\n", "signature": "(\tself,\tselection: list[int] = None,\tautoExposure: bool = None,\texposure: int = None,\tanalogGain: float = None,\tdigitalGain: int = None,\tfocus: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_group": {"fullname": "three.scanner.Scanner.set_group", "modulename": "three.scanner", "qualname": "Scanner.set_group", "kind": "function", "doc": "

Set scan group properties.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: list[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: list[float] = None,\ttranslation: list[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_project": {"fullname": "three.scanner.Scanner.set_project", "modulename": "three.scanner", "qualname": "Scanner.set_project", "kind": "function", "doc": "

Apply settings to the current open project.

\n", "signature": "(self, index: int = None, name: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_projector": {"fullname": "three.scanner.Scanner.set_projector", "modulename": "three.scanner", "qualname": "Scanner.set_projector", "kind": "function", "doc": "

Apply projector settings.

\n", "signature": "(\tself,\ton: bool = None,\tbrightness: float = None,\tpattern: MF.V3.Settings.Projector.Projector.Pattern = None,\timage: MF.V3.Settings.Projector.Projector.Image = None,\tcolor: list[float] = None,\tbuffer: bytes = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.shutdown": {"fullname": "three.scanner.Scanner.shutdown", "modulename": "three.scanner", "qualname": "Scanner.shutdown", "kind": "function", "doc": "

Shutdown the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.smooth": {"fullname": "three.scanner.Scanner.smooth", "modulename": "three.scanner", "qualname": "Scanner.smooth", "kind": "function", "doc": "

Smooth a set of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttaubin: MF.V3.Settings.Smooth.Smooth.Taubin = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.split_group": {"fullname": "three.scanner.Scanner.split_group", "modulename": "three.scanner", "qualname": "Scanner.split_group", "kind": "function", "doc": "

Split a scan group (ie. move its subgroups to its parent group).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.start_video": {"fullname": "three.scanner.Scanner.start_video", "modulename": "three.scanner", "qualname": "Scanner.start_video", "kind": "function", "doc": "

Start the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.stop_video": {"fullname": "three.scanner.Scanner.stop_video", "modulename": "three.scanner", "qualname": "Scanner.stop_video", "kind": "function", "doc": "

Stop the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.system_info": {"fullname": "three.scanner.Scanner.system_info", "modulename": "three.scanner", "qualname": "Scanner.system_info", "kind": "function", "doc": "

Get system information.

\n", "signature": "(\tself,\tupdateMajor: bool = None,\tupdateNightly: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.transform_group": {"fullname": "three.scanner.Scanner.transform_group", "modulename": "three.scanner", "qualname": "Scanner.transform_group", "kind": "function", "doc": "

Apply a rigid transformation to a group.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: list[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: list[float] = None,\ttranslation: list[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.turntable_calibration": {"fullname": "three.scanner.Scanner.turntable_calibration", "modulename": "three.scanner", "qualname": "Scanner.turntable_calibration", "kind": "function", "doc": "

Get the turntable calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.update_settings": {"fullname": "three.scanner.Scanner.update_settings", "modulename": "three.scanner", "qualname": "Scanner.update_settings", "kind": "function", "doc": "

Update scanner settings.

\n", "signature": "(\tself,\tadvanced: MF.V3.Settings.Advanced.Advanced = None,\tcamera: MF.V3.Settings.Camera.Camera = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\ti18n: MF.V3.Settings.I18n.I18n = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tstyle: MF.V3.Settings.Style.Style = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\ttutorials: MF.V3.Settings.Tutorials.Tutorials = None,\tviewer: MF.V3.Settings.Viewer.Viewer = None,\tsoftware: MF.V3.Settings.Software.Software = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.upload_project": {"fullname": "three.scanner.Scanner.upload_project", "modulename": "three.scanner", "qualname": "Scanner.upload_project", "kind": "function", "doc": "

Upload a project to the scanner.

\n", "signature": "(self, buffer: bytes) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.serialization": {"fullname": "three.serialization", "modulename": "three.serialization", "kind": "module", "doc": "

\n"}, "three.serialization.Serializer": {"fullname": "three.serialization.Serializer", "modulename": "three.serialization", "qualname": "Serializer", "kind": "function", "doc": "

\n", "signature": "(object, visited=None):", "funcdef": "def"}, "three.serialization.TO_JSON": {"fullname": "three.serialization.TO_JSON", "modulename": "three.serialization", "qualname": "TO_JSON", "kind": "function", "doc": "

Serialize an object into a json string.

\n\n

Args: \n object: the object to serialize.

\n\n

Returns:\n The string representing the object.

\n", "signature": "(object) -> str:", "funcdef": "def"}}, "docInfo": {"three": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 471}, "three.MF.V3.Buffer.Buffer.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 106, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Index": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Size": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Task": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Descriptor": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 100, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 29}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Camera": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 42}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 52}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 26}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Export.Export.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 179, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.extension": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.description": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.normals": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.colors": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.textures": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.faces": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Image.Image.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.type": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Import.Import.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 148, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Imported": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.imported": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.ignored": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 91, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface.ip": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Project.Project.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 206, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 7}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 464, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 305, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 305, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 254, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 55, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 254, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 234, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 106, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 92, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 234, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 364, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 142, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 55, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Software.Software.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.frontend": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.server": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.System.System.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.serialNumber": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.diskSpace": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.publicKey": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Transform": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Transform.Transform": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 26}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 173, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 484, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 38}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 70}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 37}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 68}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 99, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 147, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 137, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 94, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Align.Align.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 122, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.points": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.ICP": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 146, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.points": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.source": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.rough": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.fine": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 22}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.BoundingBox": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 3}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Camera.Camera.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.exposure": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.focus": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Capture.Capture.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 180, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 94, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 100, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 45}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject.CopyProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Export.Export.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 192, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Export.Export.Format.ply": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.dae": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.glb": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.obj": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.stl": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.scale": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.offset": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.min": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.max": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.merge": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.scale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Group.Group.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 141, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.visible": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.collapsed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.Group.Group.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.translation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.I18n.I18n.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.language": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Import.Import.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.scale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.unit": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.center": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.groupIndex": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Merge.Merge.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 156, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 75, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.simplify": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.texturize": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 148, "bases": 0, "doc": 30}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Project": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Project.Project": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Project.Project.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 20}, "three.MF.V3.Settings.Project.Project.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Project.Project.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 160, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.on": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.brightness": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.pattern": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.image": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality.Quality": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Quality.Quality.Low": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality.Quality.Medium": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality.Quality.High": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.RemoveVertices": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 3}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Scan.Scan.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 240, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 364, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 93}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 64}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 34}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 57}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 99, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.projector": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.processing": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 171, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 7}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 384, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.style": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.software": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software.Software": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Software.Software.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software.Software.updateMajor": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software.Software.updateNightly": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Style.Style.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style.Theme": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 4}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style.theme": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.use": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Video.Video.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Viewer": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Viewer.Viewer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi.Wifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi.Wifi.password": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "three.MF.V3.Task.TaskState.Empty": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Sent": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Received": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Started": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Completed": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Cancelled": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Failed": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Dropped": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Disconnected": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 497}, "three.MF.V3.Task.Task.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 244, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Index": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Type": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Input": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Output": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.State": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Error": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Progress": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 275}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 432}, "three.MF.V3.Tasks.Align.Align.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 956}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 561}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 242}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 245}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 390}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 226}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 934}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 968}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 162}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 249}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 625}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1085}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 206}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 28}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 339}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 534}, "three.MF.V3.Tasks.Export.Export.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 282}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 432}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 323}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 412}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 165}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 295}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 155}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 175}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 176}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 178}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1135}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 488}, "three.MF.V3.Tasks.Import.Import.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 659}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 121, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 588}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 337}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 424}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 479}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 962}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 375}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 682}, "three.MF.V3.Tasks.Merge.Merge.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1959}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 309}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 119}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 137, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 306}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 251}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 153, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 571}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 228}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1001}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 138, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 974}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 154}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 216}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 137, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 474}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 157}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 185}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 2043}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 466}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 816}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 426}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 153, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 414}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 154}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 399}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 132, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 295}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 265}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 158}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 141}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 146, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 467}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 247}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1092}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 286}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Three": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Three.list_network_interfaces": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.list_wifi": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.connect_wifi": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 8}, "three.MF.V3.Three.forget_wifi": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.list_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.push_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.MF.V3.Three.pop_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 12}, "three.MF.V3.Three.update_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 410, "bases": 0, "doc": 6}, "three.MF.V3.Three.list_projects": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.download_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.MF.V3.Three.upload_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.MF.V3.Three.new_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 7}, "three.MF.V3.Three.open_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 7}, "three.MF.V3.Three.clear_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.close_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.MF.V3.Three.copy_groups": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 14}, "three.MF.V3.Three.remove_projects": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 6}, "three.MF.V3.Three.list_groups": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.MF.V3.Three.list_scans": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.scan_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 16}, "three.MF.V3.Three.set_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 10}, "three.MF.V3.Three.set_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 7}, "three.MF.V3.Three.new_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 8}, "three.MF.V3.Three.move_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.MF.V3.Three.factory_reset": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 9}, "three.MF.V3.Three.flatten_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.MF.V3.Three.split_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.MF.V3.Three.transform_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 10}, "three.MF.V3.Three.remove_groups": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.MF.V3.Three.bounding_box": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 72, "bases": 0, "doc": 13}, "three.MF.V3.Three.align": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 138, "bases": 0, "doc": 7}, "three.MF.V3.Three.smooth": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 8}, "three.MF.V3.Three.heat_map": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 23}, "three.MF.V3.Three.merge": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 172, "bases": 0, "doc": 9}, "three.MF.V3.Three.merge_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 13}, "three.MF.V3.Three.add_merge_to_project": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.import_file": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 23}, "three.MF.V3.Three.list_export_formats": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.export": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 8}, "three.MF.V3.Three.export_heat_map": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 14}, "three.MF.V3.Three.export_merge": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 7}, "three.MF.V3.Three.export_logs": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 6}, "three.MF.V3.Three.export_factory_calibration_logs": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.has_cameras": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 10}, "three.MF.V3.Three.has_projector": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.has_turntable": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.system_info": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 6}, "three.MF.V3.Three.camera_calibration": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.MF.V3.Three.turntable_calibration": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.MF.V3.Three.calibration_capture_targets": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.calibrate_cameras": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.calibrate_turntable": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.detect_calibration_card": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 12}, "three.MF.V3.Three.restore_factory_calibration": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.start_video": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.stop_video": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.set_cameras": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 11}, "three.MF.V3.Three.set_projector": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 194, "bases": 0, "doc": 6}, "three.MF.V3.Three.auto_focus": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 9}, "three.MF.V3.Three.rotate_turntable": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 6}, "three.MF.V3.Three.new_scan": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.MF.V3.Three.capture_image": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 7}, "three.MF.V3.Three.depth_map": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.MF.V3.Three.reboot": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.shutdown": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 137}, "three.scanner.Scanner.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 127, "bases": 0, "doc": 125}, "three.scanner.Scanner.OnTask": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner.OnMessage": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner.OnBuffer": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner.Connect": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 68}, "three.scanner.Scanner.Disconnect": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "three.scanner.Scanner.IsConnected": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 20}, "three.scanner.Scanner.SendTask": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 83}, "three.scanner.Scanner.add_merge_to_project": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.align": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 138, "bases": 0, "doc": 7}, "three.scanner.Scanner.auto_focus": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 9}, "three.scanner.Scanner.bounding_box": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 72, "bases": 0, "doc": 13}, "three.scanner.Scanner.calibrate_cameras": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.calibrate_turntable": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.calibration_capture_targets": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.camera_calibration": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.scanner.Scanner.capture_image": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 7}, "three.scanner.Scanner.clear_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.close_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.scanner.Scanner.connect_wifi": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 8}, "three.scanner.Scanner.copy_groups": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 14}, "three.scanner.Scanner.depth_map": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.scanner.Scanner.detect_calibration_card": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 12}, "three.scanner.Scanner.download_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.scanner.Scanner.export": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 8}, "three.scanner.Scanner.export_factory_calibration_logs": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.export_heat_map": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 14}, "three.scanner.Scanner.export_logs": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 6}, "three.scanner.Scanner.export_merge": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 7}, "three.scanner.Scanner.factory_reset": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 9}, "three.scanner.Scanner.flatten_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.scanner.Scanner.forget_wifi": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.has_cameras": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 10}, "three.scanner.Scanner.has_projector": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.has_turntable": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.heat_map": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 23}, "three.scanner.Scanner.import_file": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 23}, "three.scanner.Scanner.list_export_formats": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.list_groups": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.scanner.Scanner.list_network_interfaces": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.list_projects": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.list_scans": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.list_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.list_wifi": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.merge": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 172, "bases": 0, "doc": 9}, "three.scanner.Scanner.merge_data": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 13}, "three.scanner.Scanner.move_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.scanner.Scanner.new_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 8}, "three.scanner.Scanner.new_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 7}, "three.scanner.Scanner.new_scan": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.scanner.Scanner.open_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 7}, "three.scanner.Scanner.pop_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 12}, "three.scanner.Scanner.push_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.scanner.Scanner.reboot": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.remove_groups": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.scanner.Scanner.remove_projects": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 6}, "three.scanner.Scanner.restore_factory_calibration": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.rotate_turntable": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 6}, "three.scanner.Scanner.scan_data": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 16}, "three.scanner.Scanner.set_cameras": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 11}, "three.scanner.Scanner.set_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 7}, "three.scanner.Scanner.set_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 10}, "three.scanner.Scanner.set_projector": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 194, "bases": 0, "doc": 6}, "three.scanner.Scanner.shutdown": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.smooth": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 8}, "three.scanner.Scanner.split_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.scanner.Scanner.start_video": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.stop_video": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.system_info": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 6}, "three.scanner.Scanner.transform_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 10}, "three.scanner.Scanner.turntable_calibration": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.scanner.Scanner.update_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 410, "bases": 0, "doc": 6}, "three.scanner.Scanner.upload_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.serialization": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.serialization.Serializer": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "three.serialization.TO_JSON": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 28}}, "length": 2310, "save": true}, "index": {"qualname": {"root": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 320, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 98, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}}, "df": 24}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 8}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 6}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}}, "df": 8}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}}, "df": 18}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 319, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}}, "df": 155}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}}, "df": 75}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 20, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 51, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}}, "df": 5}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}}, "df": 18}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}}, "df": 15}}}, "l": {"docs": {"three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.start_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Started": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}}, "df": 66}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 78, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}}, "df": 8}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}}, "df": 70}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.OnTask": {"tf": 1}, "three.scanner.Scanner.OnMessage": {"tf": 1}, "three.scanner.Scanner.OnBuffer": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 98}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}}, "df": 12}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}}, "df": 24}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}}, "df": 22}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}}, "df": 6}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}}, "df": 13}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.serialization.Serializer": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.TaskState.Sent": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 8, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}}, "df": 14}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}}, "df": 14, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 10}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 25}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 23, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 10}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 13, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}}, "df": 5}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 86, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}}, "df": 24}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}}, "df": 13, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}}, "df": 8}}}}}}}, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}}, "df": 161}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}}, "df": 9}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}}, "df": 9}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}}, "df": 10}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}}, "df": 51}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}}, "df": 20}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}}, "df": 2}, "a": {"docs": {"three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 4}}, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}}, "df": 8}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}}, "df": 5}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner.Disconnect": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.download_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}}, "df": 19}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Dropped": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}}, "df": 78, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 68, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}}, "df": 38}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}}, "df": 14}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}}, "df": 13, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 14, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Completed": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}}, "df": 21}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}}, "df": 4}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 3, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.close_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}}, "df": 11}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 12}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}}, "df": 14}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}}, "df": 47, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Received": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}}, "df": 297}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 474}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}}, "df": 13}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}}, "df": 9}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}}, "df": 8}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}}, "df": 10}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "b": {"5": {"6": {"5": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}}, "df": 29}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 5}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 71, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}}, "df": 16}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}}, "df": 18}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}}, "df": 18}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}}, "df": 18}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 73}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}}, "df": 49}}}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}}, "df": 17, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}}, "df": 9}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}}, "df": 9}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}}, "df": 8}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {"three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 41, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 47, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}}, "df": 55}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task.Progress": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}}, "df": 29}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}}, "df": 6}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Three.push_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Failed": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 19}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}}, "df": 13}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 32, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}}, "df": 11}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 9}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}}, "df": 35, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 6}}, "u": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 66, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}}, "df": 20}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}}, "df": 5}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.move_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "h": {"2": {"6": {"4": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}}, "df": 28}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 21}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}}, "df": 53}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 9, "s": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {"three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}}, "df": 23}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}}, "df": 14}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}}, "df": 14}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}}, "df": 12}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}}, "df": 12}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}}, "df": 12}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}}, "df": 29}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}}, "df": 48}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.OnTask": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.OnMessage": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.OnBuffer": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}}, "df": 4}}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}}, "df": 1}}, "docs": {"three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}}, "df": 7}}}, "v": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}}, "df": 29, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}}, "df": 6}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.upload_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 16}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}}, "df": 14}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}}, "df": 12}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 21, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}}, "df": 11}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}}, "df": 57}}}}, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}}, "df": 9}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}}, "df": 314}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}}, "df": 31}}}}}}}}}}}}}}, "d": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}}, "df": 6}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}}, "df": 22}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}}, "df": 8}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 61, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "l": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}}, "df": 2}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}}, "df": 1}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "z": {"docs": {"three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}}, "df": 1}}, "y": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "fullname": {"root": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 320, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"three": {"tf": 1}, "three.MF": {"tf": 1}, "three.MF.V3": {"tf": 1}, "three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Three": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.forget_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.upload_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.open_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.clear_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.close_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.copy_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scans": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.move_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.factory_reset": {"tf": 1.4142135623730951}, "three.MF.V3.Three.flatten_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.camera_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.turntable_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1.4142135623730951}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.start_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.stop_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Three.shutdown": {"tf": 1.4142135623730951}, "three.scanner": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.OnTask": {"tf": 1}, "three.scanner.Scanner.OnMessage": {"tf": 1}, "three.scanner.Scanner.OnBuffer": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization": {"tf": 1}, "three.serialization.Serializer": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 2310}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}}, "df": 9}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}}, "df": 9}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.State": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Progress": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 34, "s": {"docs": {"three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 967, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 10}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 14, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}}, "df": 5}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 88, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1.4142135623730951}}, "df": 26}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}}, "df": 13, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}}, "df": 8}}}}}}}, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}}, "df": 161}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "f": {"docs": {"three.MF": {"tf": 1}, "three.MF.V3": {"tf": 1}, "three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Three": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}}, "df": 2231}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}}, "df": 35, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 6}}, "u": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 69, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 21}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}}, "df": 5}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.move_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "v": {"3": {"docs": {"three.MF.V3": {"tf": 1}, "three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Three": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}}, "df": 2230}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.4142135623730951}}, "df": 16}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}}, "df": 12}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1.4142135623730951}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 22, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}}, "df": 57}}}}, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}}, "df": 9}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 99, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1.4142135623730951}}, "df": 27}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 8}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 6}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}}, "df": 8}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}}, "df": 20}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 319, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}}, "df": 155}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}}, "df": 75}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 21, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 54, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}}, "df": 5}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}}, "df": 18}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}}, "df": 4}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1.4142135623730951}}, "df": 17}}}, "l": {"docs": {"three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.start_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Started": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}}, "df": 66}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 79, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1.4142135623730951}}, "df": 9}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 73}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1.4142135623730951}, "three.scanner": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.OnTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.OnMessage": {"tf": 1.4142135623730951}, "three.scanner.Scanner.OnBuffer": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Disconnect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.IsConnected": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.camera_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.close_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.connect_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.factory_reset": {"tf": 1.4142135623730951}, "three.scanner.Scanner.flatten_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.forget_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scans": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}, "three.scanner.Scanner.open_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.reboot": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.rotate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.shutdown": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.start_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.stop_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.turntable_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.update_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.upload_project": {"tf": 1.4142135623730951}}, "df": 101}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}}, "df": 12}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 8, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 930}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 15, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization": {"tf": 1}, "three.serialization.Serializer": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.serialization.Serializer": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.TaskState.Sent": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}}, "df": 24}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1.4142135623730951}}, "df": 25}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}}, "df": 6}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}}, "df": 14}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1.4142135623730951}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 27}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}}, "df": 659}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}}, "df": 10}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}}, "df": 51}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 21}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}}, "df": 2}, "a": {"docs": {"three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 4}}, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}}, "df": 8}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}}, "df": 5}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner.Disconnect": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.download_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 20}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Dropped": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 42, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}}, "df": 80, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 70, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 41}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}}, "df": 14}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}}, "df": 13, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 14, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Completed": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1.4142135623730951}}, "df": 23}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 3, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.close_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}}, "df": 11}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 4, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}}, "df": 47, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1.4142135623730951}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Received": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}}, "df": 297}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 474}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}}, "df": 14}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}}, "df": 9}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}}, "df": 8}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}}, "df": 10}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "b": {"5": {"6": {"5": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}}, "df": 30}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 5}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 74, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 17}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 19}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 73}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}}, "df": 49}}}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}}, "df": 17, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}}, "df": 9}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}}, "df": 9}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}}, "df": 8}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {"three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 43, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 49, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}}, "df": 55}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task.Progress": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}}, "df": 29}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}}, "df": 6}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Three.push_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Failed": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 19}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}}, "df": 13}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}}, "df": 1}}}}}}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 33, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}}, "df": 11}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 9}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}}, "df": 1}}}, "h": {"2": {"6": {"4": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1.4142135623730951}}, "df": 31}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 23}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}}, "df": 53}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 15, "s": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "w": {"docs": {"three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 25}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}}, "df": 12}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}}, "df": 29}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}}, "df": 48}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.OnTask": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.OnMessage": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.OnBuffer": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}}, "df": 4}}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}}, "df": 1}}, "docs": {"three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}}, "df": 7}}}, "v": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}}, "df": 29, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}}, "df": 6}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.upload_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 17}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}}, "df": 316}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}}, "df": 31}}}}}}}}}}}}}}, "d": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}}, "df": 6}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1.4142135623730951}}, "df": 24}}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}}, "df": 8}}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 63, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "l": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}}, "df": 2}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}}, "df": 1}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "z": {"docs": {"three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}}, "df": 1}}, "y": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Received": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Started": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.4142135623730951}}, "df": 115, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 115}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}}, "df": 2}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}}, "df": 15}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}}, "df": 1, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 5}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}}, "df": 5}}}}, "n": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}}, "df": 1}}, "x": {"2": {"7": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Received": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Started": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.4142135623730951}}, "df": 115}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "z": {"docs": {"three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 6}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 115}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.4142135623730951}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Failed": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 5}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}}, "df": 12}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}}, "df": 1}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}}, "df": 1}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}}, "df": 5, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}}, "df": 16}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 9}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}}, "df": 1}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Started": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.TaskState.Sent": {"tf": 1.4142135623730951}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}}, "df": 5}}}, "v": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}}, "df": 2}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}}, "df": 8}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Completed": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}}, "df": 2}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Received": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "b": {"5": {"6": {"5": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}}, "df": 1}}, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}}, "df": 8}}}}}, "g": {"docs": {}, "df": 0, "r": {"8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Dropped": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}}, "df": 2}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}}, "df": 1}}, "docs": {}, "df": 0}}}}, "z": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "h": {"2": {"6": {"4": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}}, "df": 2}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "signature": {"root": {"1": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "docs": {}, "df": 0}, "3": {"9": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 2}, "three.MF.V3.Task.Task.__init__": {"tf": 3.4641016151377544}}, "df": 2}, "docs": {}, "df": 0}, "5": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}, "7": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "x": {"6": {"4": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "docs": {}, "df": 0}}}}}}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 8.717797887081348}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 9.16515138991168}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 5.5677643628300215}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 10.14889156509222}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 12.083045973594572}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 8.18535277187245}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 11}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 8.660254037844387}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 8.18535277187245}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 7.416198487095663}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 6.855654600401044}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 13.076696830622021}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 9.38083151964686}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 9.1104335791443}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 11.224972160321824}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 7.810249675906654}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 8.48528137423857}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 19.339079605813716}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 15.684387141358123}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 15.684387141358123}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 14.317821063276353}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 6.708203932499369}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 14.317821063276353}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 13.74772708486752}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 9.273618495495704}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 8.717797887081348}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 13.74772708486752}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 7.3484692283495345}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 17.146428199482248}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 6.4031242374328485}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 10.723805294763608}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 6.708203932499369}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 6.4031242374328485}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 8.366600265340756}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 7.416198487095663}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 11.874342087037917}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 7.54983443527075}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 7.810249675906654}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 19.849433241279208}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 7.681145747868608}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 7}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 9.695359714832659}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 7}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 8.426149773176359}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 9.055385138137417}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 11.045361017187261}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 7}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 4.242640687119285}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 10}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 8.306623862918075}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 9.695359714832659}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 10.908712114635714}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 7.54983443527075}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 6.164414002968976}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 12.24744871391589}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 9.16515138991168}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 5.0990195135927845}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 12.569805089976535}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 8}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 7.681145747868608}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 10.14889156509222}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 11.313708498984761}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 10.14889156509222}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 11.135528725660043}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 5.656854249492381}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 11.489125293076057}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 7.416198487095663}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 8.12403840463596}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 8.306623862918075}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 6}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 4.795831523312719}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 14.035668847618199}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 17.233687939614086}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 7}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 7.3484692283495345}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 8.06225774829855}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 9}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 11.832159566199232}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 7.54983443527075}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 17.72004514666935}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 8.602325267042627}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 6.855654600401044}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 5.656854249492381}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 9.848857801796104}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 7.615773105863909}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 4.795831523312719}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 9.38083151964686}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 4.242640687119285}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Task.Task.__init__": {"tf": 12.922847983320086}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 9.643650760992955}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 6.855654600401044}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 11.180339887498949}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 6.928203230275509}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 10.099504938362077}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 10}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 9.643650760992955}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 8.48528137423857}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 10.63014581273465}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 11.135528725660043}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 11.224972160321824}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 10.63014581273465}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 10.908712114635714}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 8.48528137423857}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 11.224972160321824}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 10.44030650891055}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 10.099504938362077}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 10.954451150103322}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 11.135528725660043}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Three.list_network_interfaces": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_wifi": {"tf": 4.898979485566356}, "three.MF.V3.Three.connect_wifi": {"tf": 6.324555320336759}, "three.MF.V3.Three.forget_wifi": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_settings": {"tf": 4.898979485566356}, "three.MF.V3.Three.push_settings": {"tf": 4.898979485566356}, "three.MF.V3.Three.pop_settings": {"tf": 6.164414002968976}, "three.MF.V3.Three.update_settings": {"tf": 18.303005217723125}, "three.MF.V3.Three.list_projects": {"tf": 4.898979485566356}, "three.MF.V3.Three.download_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.upload_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.new_project": {"tf": 6.164414002968976}, "three.MF.V3.Three.open_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.clear_settings": {"tf": 4.898979485566356}, "three.MF.V3.Three.close_project": {"tf": 4.898979485566356}, "three.MF.V3.Three.copy_groups": {"tf": 10.246950765959598}, "three.MF.V3.Three.remove_projects": {"tf": 6.557438524302}, "three.MF.V3.Three.list_groups": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_scans": {"tf": 4.898979485566356}, "three.MF.V3.Three.scan_data": {"tf": 12.206555615733702}, "three.MF.V3.Three.set_project": {"tf": 7.211102550927978}, "three.MF.V3.Three.set_group": {"tf": 11.789826122551595}, "three.MF.V3.Three.new_group": {"tf": 12.041594578792296}, "three.MF.V3.Three.move_group": {"tf": 6.557438524302}, "three.MF.V3.Three.factory_reset": {"tf": 4.898979485566356}, "three.MF.V3.Three.flatten_group": {"tf": 5.656854249492381}, "three.MF.V3.Three.split_group": {"tf": 5.656854249492381}, "three.MF.V3.Three.transform_group": {"tf": 11.789826122551595}, "three.MF.V3.Three.remove_groups": {"tf": 6.557438524302}, "three.MF.V3.Three.bounding_box": {"tf": 7.681145747868608}, "three.MF.V3.Three.align": {"tf": 10.63014581273465}, "three.MF.V3.Three.smooth": {"tf": 9.539392014169456}, "three.MF.V3.Three.heat_map": {"tf": 8.94427190999916}, "three.MF.V3.Three.merge": {"tf": 11.874342087037917}, "three.MF.V3.Three.merge_data": {"tf": 12.206555615733702}, "three.MF.V3.Three.add_merge_to_project": {"tf": 4.898979485566356}, "three.MF.V3.Three.import_file": {"tf": 10.954451150103322}, "three.MF.V3.Three.list_export_formats": {"tf": 4.898979485566356}, "three.MF.V3.Three.export": {"tf": 13.076696830622021}, "three.MF.V3.Three.export_heat_map": {"tf": 13.076696830622021}, "three.MF.V3.Three.export_merge": {"tf": 13.076696830622021}, "three.MF.V3.Three.export_logs": {"tf": 6.164414002968976}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 4.898979485566356}, "three.MF.V3.Three.has_cameras": {"tf": 4.898979485566356}, "three.MF.V3.Three.has_projector": {"tf": 4.898979485566356}, "three.MF.V3.Three.has_turntable": {"tf": 4.898979485566356}, "three.MF.V3.Three.system_info": {"tf": 7.416198487095663}, "three.MF.V3.Three.camera_calibration": {"tf": 4.898979485566356}, "three.MF.V3.Three.turntable_calibration": {"tf": 4.898979485566356}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 4.898979485566356}, "three.MF.V3.Three.calibrate_cameras": {"tf": 4.898979485566356}, "three.MF.V3.Three.calibrate_turntable": {"tf": 4.898979485566356}, "three.MF.V3.Three.detect_calibration_card": {"tf": 5.656854249492381}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 4.898979485566356}, "three.MF.V3.Three.start_video": {"tf": 4.898979485566356}, "three.MF.V3.Three.stop_video": {"tf": 4.898979485566356}, "three.MF.V3.Three.set_cameras": {"tf": 10.954451150103322}, "three.MF.V3.Three.set_projector": {"tf": 12.649110640673518}, "three.MF.V3.Three.auto_focus": {"tf": 8.602325267042627}, "three.MF.V3.Three.rotate_turntable": {"tf": 5.656854249492381}, "three.MF.V3.Three.new_scan": {"tf": 14.628738838327793}, "three.MF.V3.Three.capture_image": {"tf": 9.746794344808963}, "three.MF.V3.Three.depth_map": {"tf": 14.628738838327793}, "three.MF.V3.Three.reboot": {"tf": 4.898979485566356}, "three.MF.V3.Three.shutdown": {"tf": 4.898979485566356}, "three.scanner.Scanner.__init__": {"tf": 10.246950765959598}, "three.scanner.Scanner.Connect": {"tf": 5.291502622129181}, "three.scanner.Scanner.Disconnect": {"tf": 3.4641016151377544}, "three.scanner.Scanner.IsConnected": {"tf": 3.4641016151377544}, "three.scanner.Scanner.SendTask": {"tf": 5.477225575051661}, "three.scanner.Scanner.add_merge_to_project": {"tf": 4.898979485566356}, "three.scanner.Scanner.align": {"tf": 10.63014581273465}, "three.scanner.Scanner.auto_focus": {"tf": 8.602325267042627}, "three.scanner.Scanner.bounding_box": {"tf": 7.681145747868608}, "three.scanner.Scanner.calibrate_cameras": {"tf": 4.898979485566356}, "three.scanner.Scanner.calibrate_turntable": {"tf": 4.898979485566356}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 4.898979485566356}, "three.scanner.Scanner.camera_calibration": {"tf": 4.898979485566356}, "three.scanner.Scanner.capture_image": {"tf": 9.746794344808963}, "three.scanner.Scanner.clear_settings": {"tf": 4.898979485566356}, "three.scanner.Scanner.close_project": {"tf": 4.898979485566356}, "three.scanner.Scanner.connect_wifi": {"tf": 6.324555320336759}, "three.scanner.Scanner.copy_groups": {"tf": 10.246950765959598}, "three.scanner.Scanner.depth_map": {"tf": 14.628738838327793}, "three.scanner.Scanner.detect_calibration_card": {"tf": 5.656854249492381}, "three.scanner.Scanner.download_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.export": {"tf": 13.076696830622021}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 4.898979485566356}, "three.scanner.Scanner.export_heat_map": {"tf": 13.076696830622021}, "three.scanner.Scanner.export_logs": {"tf": 6.164414002968976}, "three.scanner.Scanner.export_merge": {"tf": 13.076696830622021}, "three.scanner.Scanner.factory_reset": {"tf": 4.898979485566356}, "three.scanner.Scanner.flatten_group": {"tf": 5.656854249492381}, "three.scanner.Scanner.forget_wifi": {"tf": 4.898979485566356}, "three.scanner.Scanner.has_cameras": {"tf": 4.898979485566356}, "three.scanner.Scanner.has_projector": {"tf": 4.898979485566356}, "three.scanner.Scanner.has_turntable": {"tf": 4.898979485566356}, "three.scanner.Scanner.heat_map": {"tf": 8.94427190999916}, "three.scanner.Scanner.import_file": {"tf": 10.954451150103322}, "three.scanner.Scanner.list_export_formats": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_groups": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_network_interfaces": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_projects": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_scans": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_settings": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_wifi": {"tf": 4.898979485566356}, "three.scanner.Scanner.merge": {"tf": 11.874342087037917}, "three.scanner.Scanner.merge_data": {"tf": 12.206555615733702}, "three.scanner.Scanner.move_group": {"tf": 6.557438524302}, "three.scanner.Scanner.new_group": {"tf": 12.041594578792296}, "three.scanner.Scanner.new_project": {"tf": 6.164414002968976}, "three.scanner.Scanner.new_scan": {"tf": 14.628738838327793}, "three.scanner.Scanner.open_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.pop_settings": {"tf": 6.164414002968976}, "three.scanner.Scanner.push_settings": {"tf": 4.898979485566356}, "three.scanner.Scanner.reboot": {"tf": 4.898979485566356}, "three.scanner.Scanner.remove_groups": {"tf": 6.557438524302}, "three.scanner.Scanner.remove_projects": {"tf": 6.557438524302}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 4.898979485566356}, "three.scanner.Scanner.rotate_turntable": {"tf": 5.656854249492381}, "three.scanner.Scanner.scan_data": {"tf": 12.206555615733702}, "three.scanner.Scanner.set_cameras": {"tf": 10.954451150103322}, "three.scanner.Scanner.set_group": {"tf": 11.789826122551595}, "three.scanner.Scanner.set_project": {"tf": 7.211102550927978}, "three.scanner.Scanner.set_projector": {"tf": 12.649110640673518}, "three.scanner.Scanner.shutdown": {"tf": 4.898979485566356}, "three.scanner.Scanner.smooth": {"tf": 9.539392014169456}, "three.scanner.Scanner.split_group": {"tf": 5.656854249492381}, "three.scanner.Scanner.start_video": {"tf": 4.898979485566356}, "three.scanner.Scanner.stop_video": {"tf": 4.898979485566356}, "three.scanner.Scanner.system_info": {"tf": 7.416198487095663}, "three.scanner.Scanner.transform_group": {"tf": 11.789826122551595}, "three.scanner.Scanner.turntable_calibration": {"tf": 4.898979485566356}, "three.scanner.Scanner.update_settings": {"tf": 18.303005217723125}, "three.scanner.Scanner.upload_project": {"tf": 5.656854249492381}, "three.serialization.Serializer": {"tf": 4.242640687119285}, "three.serialization.TO_JSON": {"tf": 3.4641016151377544}}, "df": 455, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 7}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 165}}}, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 2}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 2}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 2}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 2}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 2}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 2}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 258, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 99}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}}, "df": 18}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 3.1622776601683795}, "three.MF.V3.Three.scan_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.23606797749979}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 2.23606797749979}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 2.23606797749979}, "three.scanner.Scanner.export": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.merge_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 2.23606797749979}, "three.scanner.Scanner.scan_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.update_settings": {"tf": 3.1622776601683795}}, "df": 155}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 22}}}}}}, "f": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 134}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}}, "df": 4}}, "r": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 175, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 2}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 66}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}}, "df": 17}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 2.449489742783178}, "three.MF.V3.Three.merge_data": {"tf": 2.449489742783178}, "three.scanner.Scanner.merge_data": {"tf": 2.449489742783178}, "three.scanner.Scanner.scan_data": {"tf": 2.449489742783178}}, "df": 14}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 2}}, "df": 6}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 14}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 6}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 2}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 8}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}}, "df": 2}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.forget_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.upload_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.open_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.clear_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.close_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.copy_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scans": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.move_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.factory_reset": {"tf": 1.4142135623730951}, "three.MF.V3.Three.flatten_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.camera_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.turntable_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1.4142135623730951}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.start_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.stop_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Three.shutdown": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.camera_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.close_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.connect_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.factory_reset": {"tf": 1.4142135623730951}, "three.scanner.Scanner.flatten_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.forget_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scans": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}, "three.scanner.Scanner.open_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.reboot": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.rotate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.shutdown": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.start_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.stop_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.turntable_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.update_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.upload_project": {"tf": 1.4142135623730951}}, "df": 212, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 66}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 11}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}}, "df": 66}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}}, "df": 3}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 139}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 15}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 7}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}}}}}}, "m": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 3.3166247903554}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 2}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.7320508075688772}, "three.MF.V3.Three.smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.merge_data": {"tf": 2}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 2}, "three.MF.V3.Three.export_heat_map": {"tf": 2}, "three.MF.V3.Three.export_merge": {"tf": 2}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.449489742783178}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 2.449489742783178}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 2.449489742783178}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 2}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 2}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 2}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 2}, "three.scanner.Scanner.merge_data": {"tf": 2}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 2.449489742783178}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 2}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1.7320508075688772}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 3.3166247903554}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 318}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}}, "df": 35, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 2}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 2}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 2}}, "df": 16, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "u": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "v": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 3.3166247903554}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 2}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.7320508075688772}, "three.MF.V3.Three.smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.merge_data": {"tf": 2}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 2}, "three.MF.V3.Three.export_heat_map": {"tf": 2}, "three.MF.V3.Three.export_merge": {"tf": 2}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.449489742783178}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 2.449489742783178}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 2.449489742783178}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 2}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 2}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 2}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 2}, "three.scanner.Scanner.merge_data": {"tf": 2}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 2.449489742783178}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 2}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1.7320508075688772}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 3.3166247903554}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 318}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 9}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.serialization.Serializer": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 5}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 2}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}}, "df": 52}}}}, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}}, "df": 85}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}}, "df": 51}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1.7320508075688772}}, "df": 80}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}}, "df": 18, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 3}}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}}, "df": 23, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 2}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 2}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_projector": {"tf": 2}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 2}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 17, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"2": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 2.449489742783178}}, "df": 2}, "docs": {}, "df": 0}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "y": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 16}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 2}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 2}, "three.scanner.Scanner.align": {"tf": 2}}, "df": 7, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 2}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 2}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 2}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.transform_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.7320508075688772}}, "df": 77}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}}, "df": 11}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}}, "df": 4}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}}, "df": 48}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.serialization.Serializer": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 2}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 2}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 2}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 3.1622776601683795}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 2.23606797749979}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 2.449489742783178}, "three.MF.V3.Three.new_group": {"tf": 2.6457513110645907}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 2.449489742783178}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.merge_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.import_file": {"tf": 2.23606797749979}, "three.MF.V3.Three.export": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_heat_map": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_merge": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 2.449489742783178}, "three.MF.V3.Three.set_projector": {"tf": 2.449489742783178}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.6457513110645907}, "three.MF.V3.Three.capture_image": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 2.6457513110645907}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1.7320508075688772}, "three.scanner.Scanner.copy_groups": {"tf": 2.23606797749979}, "three.scanner.Scanner.depth_map": {"tf": 2.6457513110645907}, "three.scanner.Scanner.export": {"tf": 2.449489742783178}, "three.scanner.Scanner.export_heat_map": {"tf": 2.449489742783178}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 2.449489742783178}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 2.23606797749979}, "three.scanner.Scanner.merge": {"tf": 2}, "three.scanner.Scanner.merge_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 2.6457513110645907}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 2.6457513110645907}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_cameras": {"tf": 2.449489742783178}, "three.scanner.Scanner.set_group": {"tf": 2.449489742783178}, "three.scanner.Scanner.set_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 2.449489742783178}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 2.449489742783178}, "three.scanner.Scanner.update_settings": {"tf": 3.1622776601683795}, "three.serialization.Serializer": {"tf": 1}}, "df": 219, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 17, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}}, "df": 8, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 2}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 23, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 13, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}}, "df": 7}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}}, "df": 6}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 9}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 12}}}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}}, "df": 6}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 2}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}}, "df": 8}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 2}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}}, "df": 95}}, "x": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 2}}, "df": 2}}}}}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 15, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 6}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 6}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 2}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 2}, "three.MF.V3.Three.export_heat_map": {"tf": 2}, "three.MF.V3.Three.export_merge": {"tf": 2}, "three.scanner.Scanner.export": {"tf": 2}, "three.scanner.Scanner.export_heat_map": {"tf": 2}, "three.scanner.Scanner.export_merge": {"tf": 2}}, "df": 15}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 67}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}}}, "u": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}}, "df": 1}, "y": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}}, "df": 1}}}, "bases": {"root": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState": {"tf": 1.4142135623730951}}, "df": 26}}}}}}, "doc": {"root": {"0": {"1": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "3": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "7": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 2}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 5.656854249492381}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 4.242640687119285}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 2}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 5.0990195135927845}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 3.605551275463989}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 49}, "1": {"0": {"0": {"0": {"0": {"0": {"0": {"0": {"1": {"2": {"3": {"4": {"5": {"6": {"7": {"8": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "2": {"4": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "3": {"8": {"7": {"9": {"2": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"2": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 5}, "1": {"2": {"2": {"1": {"6": {"3": {"2": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}}, "df": 5}, "2": {"6": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "7": {"8": {"4": {"3": {"8": {"5": {"6": {"8": {"1": {"1": {"5": {"2": {"3": {"4": {"4": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "8": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}}, "df": 2}, "docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}}, "df": 3}, "3": {"0": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}}, "df": 1}, "1": {"2": {"8": {"9": {"6": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 4}, "docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 3}, "5": {"0": {"8": {"2": {"6": {"1": {"0": {"6": {"8": {"8": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"8": {"1": {"8": {"8": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"0": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 2}, "8": {"2": {"0": {"9": {"6": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}}, "df": 4}, "6": {"8": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 6}, "7": {"5": {"0": {"2": {"5": {"3": {"6": {"7": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}}, "df": 2}, "8": {"0": {"0": {"0": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 10}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"2": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}}, "df": 1}, "9": {"6": {"3": {"5": {"6": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Align.Align": {"tf": 2}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 3.3166247903554}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 2}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.Import.Import": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 2}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 2}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 4.58257569495584}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 2}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 2}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 2}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 4.58257569495584}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 2}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 3.4641016151377544}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}}, "df": 74}, "2": {"0": {"0": {"0": {"0": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"4": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 1}, "1": {"0": {"4": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"1": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "3": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "4": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "3": {"4": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "7": {"7": {"5": {"7": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "4": {"3": {"1": {"4": {"0": {"8": {"3": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6}, "5": {"0": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "3": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "6": {"docs": {"three.MF.V3.Task.Task": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 2}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.449489742783178}}, "df": 10}, "docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}}, "df": 1}, "7": {"0": {"0": {"0": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}}, "df": 1}, "5": {"docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 3}, "docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}, "9": {"7": {"3": {"8": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2}}, "df": 26}, "3": {"0": {"0": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 2}, "docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 1}, "2": {"0": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 8}, "4": {"1": {"5": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 4}, "4": {"3": {"1": {"1": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"0": {"4": {"4": {"9": {"4": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"9": {"8": {"3": {"4": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}, "6": {"0": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 5}, "docs": {}, "df": 0}, "7": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "8": {"0": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}}, "df": 1}, "9": {"2": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}}, "df": 1}, "6": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 22, "x": {"3": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 6}}, "4": {"1": {"3": {"3": {"7": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"2": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "7": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"9": {"6": {"2": {"2": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 11, "x": {"4": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "5": {"0": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}}, "df": 1}, "1": {"0": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}, "2": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "3": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 3}, "5": {"3": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"1": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "7": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}, "docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 2}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 2}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 25}, "6": {"1": {"1": {"2": {"4": {"8": {"9": {"7": {"0": {"0": {"3": {"1": {"7": {"3": {"8": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"8": {"9": {"8": {"0": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}}, "df": 1}, "3": {"1": {"2": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 3.4641016151377544}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}}, "df": 2}, "5": {"5": {"3": {"6": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 9}, "7": {"3": {"4": {"1": {"0": {"7": {"9": {"7": {"1": {"1": {"9": {"1": {"4": {"0": {"6": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}}, "df": 5}, "8": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 2}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}}, "df": 4}, "8": {"0": {"0": {"0": {"0": {"0": {"0": {"1": {"1": {"9": {"2": {"0": {"9": {"2": {"9": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"1": {"3": {"7": {"3": {"7": {"docs": {"three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "7": {"7": {"2": {"6": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"2": {"3": {"2": {"1": {"0": {"7": {"5": {"2": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"6": {"6": {"4": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 2}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 13}, "9": {"0": {"0": {"0": {"0": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}, "4": {"5": {"5": {"4": {"0": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"4": {"1": {"2": {"7": {"5": {"4": {"0": {"5": {"8": {"8": {"3": {"7": {"9": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"6": {"4": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"0": {"6": {"4": {"3": {"9": {"9": {"7": {"1": {"9": {"2": {"3": {"8": {"3": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"4": {"6": {"7": {"2": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 5}, "docs": {"three": {"tf": 1.7320508075688772}, "three.MF": {"tf": 1.7320508075688772}, "three.MF.V3": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer": {"tf": 15.7797338380595}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1.7320508075688772}, "three.MF.V3.Settings": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 3.872983346207417}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 2.23606797749979}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1.7320508075688772}, "three.MF.V3.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Received": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Started": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task": {"tf": 18.193405398660254}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.State": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Progress": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 14.177446878757825}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 17.776388834631177}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 26}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 20.223748416156685}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 11.61895003862225}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 13.527749258468683}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 17.320508075688775}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 12.922847983320086}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 25}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 25.787593916455254}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 11}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 13.341664064126334}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 21.02379604162864}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 27.622454633866266}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 11.74734012447073}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 15.427248620541512}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 19.364916731037084}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 14.247806848775006}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 17.233687939614086}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 15.264337522473747}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 17.146428199482248}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 14.422205101855956}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 11.313708498984761}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 11.313708498984761}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 11.313708498984761}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 28.0178514522438}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 17.97220075561143}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 21.863211109075447}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 20.42057785666214}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 15.297058540778355}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 17.60681686165901}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 18.49324200890693}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 25.787593916455254}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 16.401219466856727}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 22.181073012818835}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 36.87817782917155}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 15.033296378372908}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 14.89966442575134}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 13.30413469565007}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 20.049937655763422}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 12.884098726725126}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 26.1725046566048}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 25.787593916455254}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 18.65475810617763}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 11.74734012447073}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 37.749172176353746}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 18.110770276274835}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 24.24871130596428}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 17.349351572897472}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 17.204650534085253}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 17.146428199482248}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 14.52583904633395}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 13.114877048604}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 7.745966692414834}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 18.65475810617763}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 13.527749258468683}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 27.54995462791182}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 14}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Three": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Three.connect_wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Three.forget_wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.push_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.pop_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_projects": {"tf": 1.7320508075688772}, "three.MF.V3.Three.download_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.upload_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.open_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.clear_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.close_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.copy_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_projects": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_scans": {"tf": 1.7320508075688772}, "three.MF.V3.Three.scan_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.move_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.factory_reset": {"tf": 1.7320508075688772}, "three.MF.V3.Three.flatten_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.split_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.transform_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.bounding_box": {"tf": 1.7320508075688772}, "three.MF.V3.Three.align": {"tf": 1.7320508075688772}, "three.MF.V3.Three.smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.import_file": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_export_formats": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_logs": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1.7320508075688772}, "three.MF.V3.Three.has_cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Three.has_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.has_turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Three.system_info": {"tf": 1.7320508075688772}, "three.MF.V3.Three.camera_calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Three.turntable_calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.7320508075688772}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1.7320508075688772}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Three.start_video": {"tf": 1.7320508075688772}, "three.MF.V3.Three.stop_video": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1.7320508075688772}, "three.MF.V3.Three.rotate_turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.capture_image": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.reboot": {"tf": 1.7320508075688772}, "three.MF.V3.Three.shutdown": {"tf": 1.7320508075688772}, "three.scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner": {"tf": 3.7416573867739413}, "three.scanner.Scanner.__init__": {"tf": 3.7416573867739413}, "three.scanner.Scanner.OnTask": {"tf": 1.7320508075688772}, "three.scanner.Scanner.OnMessage": {"tf": 1.7320508075688772}, "three.scanner.Scanner.OnBuffer": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 4}, "three.scanner.Scanner.Disconnect": {"tf": 1.7320508075688772}, "three.scanner.Scanner.IsConnected": {"tf": 2.449489742783178}, "three.scanner.Scanner.SendTask": {"tf": 4.358898943540674}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.align": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1.7320508075688772}, "three.scanner.Scanner.bounding_box": {"tf": 1.7320508075688772}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1.7320508075688772}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1.7320508075688772}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.7320508075688772}, "three.scanner.Scanner.camera_calibration": {"tf": 1.7320508075688772}, "three.scanner.Scanner.capture_image": {"tf": 1.7320508075688772}, "three.scanner.Scanner.clear_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.close_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.connect_wifi": {"tf": 1.7320508075688772}, "three.scanner.Scanner.copy_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1.7320508075688772}, "three.scanner.Scanner.download_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_logs": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.factory_reset": {"tf": 1.7320508075688772}, "three.scanner.Scanner.flatten_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.forget_wifi": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_cameras": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_turntable": {"tf": 1.7320508075688772}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_export_formats": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_scans": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_wifi": {"tf": 1.7320508075688772}, "three.scanner.Scanner.merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.merge_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.move_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.open_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.pop_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.push_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.reboot": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1.7320508075688772}, "three.scanner.Scanner.rotate_turntable": {"tf": 1.7320508075688772}, "three.scanner.Scanner.scan_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_cameras": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.shutdown": {"tf": 1.7320508075688772}, "three.scanner.Scanner.smooth": {"tf": 1.7320508075688772}, "three.scanner.Scanner.split_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.start_video": {"tf": 1.7320508075688772}, "three.scanner.Scanner.stop_video": {"tf": 1.7320508075688772}, "three.scanner.Scanner.system_info": {"tf": 1.7320508075688772}, "three.scanner.Scanner.transform_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.turntable_calibration": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.upload_project": {"tf": 1.7320508075688772}, "three.serialization": {"tf": 1.7320508075688772}, "three.serialization.Serializer": {"tf": 1.7320508075688772}, "three.serialization.TO_JSON": {"tf": 3}}, "df": 2310, "g": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 4}}}, "l": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 20}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 2}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 3}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 3.4641016151377544}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 2}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 2}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 33, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}}, "df": 32}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}}, "df": 35, "s": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.scanner.Scanner": {"tf": 2}, "three.scanner.Scanner.__init__": {"tf": 2}}, "df": 5}}}}}, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 16}}}}}, "e": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 16, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 15}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 7, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}}, "df": 4}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 10}, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 14}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.449489742783178}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 28, "s": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 3}}}}}, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}}, "df": 12, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 12, "d": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}}, "df": 6, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 2}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 8}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 4}}}}}}}, "x": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.6457513110645907}}, "df": 11, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 6, "l": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}}, "df": 4}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 7, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {"three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.6457513110645907}}, "df": 11, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}}}}, "y": {"docs": {"three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.7320508075688772}}, "df": 1}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 166, "m": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 8}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 3, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}}, "df": 3}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 11}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 13}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 5}}, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}}, "df": 1}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 9, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 2}}, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 16}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 20}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 3, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "g": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "t": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 4.69041575982343}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 2}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 2.23606797749979}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 2.23606797749979}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 4.58257569495584}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scans": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 2.23606797749979}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 2.6457513110645907}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scans": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1.7320508075688772}}, "df": 294, "n": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 6}, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 4}}, "y": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.scanner.Scanner": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner": {"tf": 2}, "three.scanner.Scanner.__init__": {"tf": 2}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 10}, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}}, "df": 14}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.8284271247461903}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 2}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 2}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 2.449489742783178}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 215, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 12, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 2}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner": {"tf": 2.23606797749979}, "three.scanner.Scanner.__init__": {"tf": 2}, "three.scanner.Scanner.Connect": {"tf": 1.7320508075688772}, "three.scanner.Scanner.SendTask": {"tf": 1.7320508075688772}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 74}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 13}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 7}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.23606797749979}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 27}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 4.123105625617661}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 4.123105625617661}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}}, "df": 70, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 14, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 5}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 26, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}}, "df": 1}}, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}}, "df": 6}}}}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}}, "df": 7, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 3}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 77, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 51}}}, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 20}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2.449489742783178}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 89, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.serialization.TO_JSON": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 6}, "d": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 4, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 25, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 115}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}}, "df": 3}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 8}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 4}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 3}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 22}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 6}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 67}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}}, "df": 3}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 6}}}, "r": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 4}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.serialization.TO_JSON": {"tf": 1.4142135623730951}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 3}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 3, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}}, "df": 3}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}, "y": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 3}}, "c": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 3, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 2}}, "df": 3}}}}, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}}, "df": 134, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}, "s": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}}, "df": 132}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 9, "s": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}}, "df": 1}, "d": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 8, "s": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}}, "df": 1}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 3}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 4}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 13}}}, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 1}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.7320508075688772}}, "df": 5}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 6}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 2}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2}}}, "a": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 101, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 8, "d": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner": {"tf": 2}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 35, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 10}}}}}}}}, "y": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.scanner.Scanner": {"tf": 2.23606797749979}, "three.scanner.Scanner.__init__": {"tf": 2.23606797749979}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 21}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 4}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}}, "df": 3, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 9, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}}, "df": 3, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}}, "df": 3}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "d": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 7, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 15, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}}, "df": 8}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 7}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}}, "df": 70}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 7, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 30, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}}, "df": 6, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}}, "df": 1}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 32, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 19}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 30, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 10}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 3}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 3}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 3, "d": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 67}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}}, "df": 9, "s": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}}, "df": 2}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}}, "df": 1}, "c": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.23606797749979}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 4}, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}}, "df": 30, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 9, "s": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}}, "df": 7, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 1}, "s": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 25}, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 5}}, "e": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}, "o": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 9, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}}, "df": 5}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 67, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 16}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}}, "df": 4}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}}}}, "x": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}}, "df": 1}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1, "n": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 10}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 6, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}}}}}}}, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.449489742783178}}, "df": 1, "n": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 35, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 2}, "three.MF.V3.Tasks.Export.Export": {"tf": 2}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 2}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 2}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 2}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 2}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 2}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.Import.Import": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 2}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 2}}, "df": 73, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 40}}}, "t": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2.449489742783178}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 35, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}}, "df": 3}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 18, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 6}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 2}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 4}}}}}}}, "f": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.IsConnected": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 34}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 5}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1}, "p": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.7320508075688772}}, "df": 1}, "e": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 3}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}}, "df": 1}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}}, "df": 9}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 6}}, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 15, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 4}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 14}}, "d": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 5}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}}, "df": 2}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 9}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}}, "df": 2, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 5}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"0": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}}, "df": 67}}}}}, "p": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 14}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 23, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}}, "df": 4}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}}, "df": 4}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}}, "df": 6}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 4}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2.23606797749979}}, "df": 3, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 5, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"0": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "g": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 3}}, "z": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 6}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 9}}}}, "p": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 2}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 50, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 18}}, "s": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 7}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}}, "df": 4}}}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 5, "s": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 3, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 4}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 2}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 10}}}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Video.Video.Format": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 2}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 6.6332495807108}, "three.MF.V3.Task.Task": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.Align.Align": {"tf": 7.874007874011811}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 12}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 4.898979485566356}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 5.477225575051661}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 5.477225575051661}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 12}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 9.273618495495704}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 12.569805089976535}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 4.898979485566356}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Export.Export": {"tf": 9.055385138137417}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 6.48074069840786}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 12.489995996796797}, "three.MF.V3.Tasks.Import.Import": {"tf": 8.48528137423857}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 7.211102550927978}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 7.3484692283495345}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 10.392304845413264}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 17.029386365926403}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 6.48074069840786}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 6.782329983125268}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 6.164414002968976}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 9.16515138991168}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 5.656854249492381}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 12.806248474865697}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 7.483314773547883}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 4.898979485566356}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 17.4928556845359}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 9.797958971132712}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 7.3484692283495345}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 7.3484692283495345}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 5.477225575051661}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 13.416407864998739}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 5.830951894845301}}, "df": 66}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 18}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 2}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "n": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 3, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 5, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 7, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 5}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.scanner.Scanner": {"tf": 2.449489742783178}, "three.scanner.Scanner.__init__": {"tf": 2.449489742783178}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"1": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}}, "df": 3}, "2": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}}, "df": 1}, "3": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 13, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}}, "df": 25, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 48, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 2}}, "docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}}, "df": 23, "g": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}}, "df": 3}}, "[": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 18, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 6}}, "e": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 11}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 23, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}}, "df": 3, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 50}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 4, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 2}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}}}, "v": {"3": {"docs": {"three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 8}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}}, "df": 3}, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 9}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 3.7416573867739413}}, "df": 21, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 3}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}}, "df": 2}, "y": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}}, "df": 2, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 11, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}}, "df": 7}, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}}, "df": 2}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 4}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}}, "df": 1}}}}}}}}, "p": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 3, "d": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 2}, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 3, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "v": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2}, "r": {"docs": {}, "df": 0, "i": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.7320508075688772}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8, "s": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 6}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}, "w": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 18, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}}, "df": 3}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 5}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 4}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}}, "df": 6}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "annotation", "default_value", "signature", "bases", "doc"], "ref": "fullname", "documentStore": {"docs": {"three": {"fullname": "three", "modulename": "three", "kind": "module", "doc": "

\n"}, "three.MF": {"fullname": "three.MF", "modulename": "three.MF", "kind": "module", "doc": "

\n"}, "three.MF.V3": {"fullname": "three.MF.V3", "modulename": "three.MF.V3", "kind": "module", "doc": "

\n"}, "three.MF.V3.Buffer": {"fullname": "three.MF.V3.Buffer", "modulename": "three.MF.V3.Buffer", "kind": "module", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer": {"fullname": "three.MF.V3.Buffer.Buffer", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer", "kind": "class", "doc": "

*\nGeneric buffer message for the Three Scanner.

\n\n

Some tasks require the server and/or client to transfer binary data. In such cases the _buffer message_ is sent to inform the server/client what the data is and what task it belongs to. The binary data it refers to is sent immediately following the buffer message.

\n\n

For example, DownloadProject requires the server to transfer a ZIP file containing the project data to the client.

\n\n
\n

First, the client sends the task request to the server:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n
\n
\n\n
\n

The server sends the buffer message telling the client to expect a binary data transfer and what to do with it. Note that the buffer message Task field echoes the task request, making it clear which request this data is a response to.

\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"Project-5.zip",\n"Index":0,\n"Size":15682096,\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n}\n
\n
\n\n
\n

The server then sends the 15682096 byte data buffer of the project ZIP file.\n Finally, the server sends a task completion message.

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject"\n"Input":5,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Buffer.Buffer.__init__": {"fullname": "three.MF.V3.Buffer.Buffer.__init__", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None)"}, "three.MF.V3.Buffer.Buffer.Index": {"fullname": "three.MF.V3.Buffer.Buffer.Index", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer.Size": {"fullname": "three.MF.V3.Buffer.Buffer.Size", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer.Task": {"fullname": "three.MF.V3.Buffer.Buffer.Task", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Buffer.Buffer.Descriptor": {"fullname": "three.MF.V3.Buffer.Buffer.Descriptor", "modulename": "three.MF.V3.Buffer", "qualname": "Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors": {"fullname": "three.MF.V3.Descriptors", "modulename": "three.MF.V3.Descriptors", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.BoundingBox": {"fullname": "three.MF.V3.Descriptors.BoundingBox", "modulename": "three.MF.V3.Descriptors.BoundingBox", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox", "kind": "class", "doc": "

BoundingBox descriptor.

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcenter: List[float] = None,\tsize: List[float] = None,\trotation: List[float] = None,\ttransform: List[float] = None)"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.center", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.size", "kind": "variable", "doc": "

The 3x3 rotation matrix of the bounding box.\nThe first, second and third column vectors are the x, y and z axes of the bounding box.

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.rotation", "kind": "variable", "doc": "

The 4x4 matrix that transforms the canonical cube with corners [\u00b11, \u00b11, \u00b11] to the\nbounding box in world coordinates.\nThe transform can be used as the model matrix for rendering the bounding box with an\nOpenGL shader.

\n"}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"fullname": "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform", "modulename": "three.MF.V3.Descriptors.BoundingBox", "qualname": "BoundingBox.transform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration": {"fullname": "three.MF.V3.Descriptors.Calibration", "modulename": "three.MF.V3.Descriptors.Calibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Quality": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality", "kind": "class", "doc": "

Calibration quality.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Empty", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Empty: 'None'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Poor", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Poor", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Poor: 'Poor'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Fair", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Fair", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Fair: 'Fair'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Good", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Good", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Good: 'Good'>"}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"fullname": "three.MF.V3.Descriptors.Calibration.Quality.Excellent", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Quality.Excellent", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Excellent: 'Excellent'>"}, "three.MF.V3.Descriptors.Calibration.Camera": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera", "kind": "class", "doc": "

Camera calibration descriptor.

\n"}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Descriptors.Calibration.Quality,\tdate: List[int] = None)"}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera.quality", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"fullname": "three.MF.V3.Descriptors.Calibration.Camera.date", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Camera.date", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable", "kind": "class", "doc": "

Turntable calibration descriptor.

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Descriptors.Calibration.Quality,\tdate: List[int] = None,\tfocus: List[int] = None)"}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.quality", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.date", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.date", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"fullname": "three.MF.V3.Descriptors.Calibration.Turntable.focus", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "Turntable.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget", "kind": "class", "doc": "

Calibration capture target.

\n\n

The camera calibration capture targets are used to draw quad overlays on the video stream to guide a user as to where to position the calibration card for each capture during camera calibration.

\n"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget.__init__", "kind": "function", "doc": "

\n", "signature": "(camera: int, quads: List[float] = None)"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget.camera", "kind": "variable", "doc": "

The target quad for each camera.\nThis is a set of 16 numbers defining the quad coordinates on the left and right camera.\nThe first 4 pairs of numbers define the quad on the left camera.\nThe last 4 pairs of numbers define the quad on the right camera.

\n"}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"fullname": "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "CaptureTarget.quads", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard", "kind": "class", "doc": "

Detected calibration card descriptor.

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsize: List[int] = None,\tquad: List[float] = None,\tcorners: List[float] = None,\ttarget: three.MF.V3.Descriptors.Calibration.DetectedCard.Target = None)"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target", "kind": "class", "doc": "

Calibration capture target properties.

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target.__init__", "kind": "function", "doc": "

A normalized value indicating how closely the calibration card matches the target\noverlay. 0 indicates a poor match. 1 indicates a good match.

\n", "signature": "(match: float, hold: float)"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target.match", "kind": "variable", "doc": "

A normalized value indicating how long the user has held the calibration card steady over\nthe target overlay. When the value reaches 1, the user has held the calibration card\nsteady for the complete required duration.

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.Target.hold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.size", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.quad", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.quad", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.corners", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.corners", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"fullname": "three.MF.V3.Descriptors.Calibration.DetectedCard.target", "modulename": "three.MF.V3.Descriptors.Calibration", "qualname": "DetectedCard.target", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage": {"fullname": "three.MF.V3.Descriptors.CaptureImage", "modulename": "three.MF.V3.Descriptors.CaptureImage", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage", "kind": "class", "doc": "

Capture image descriptor.

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcamera: int,\tcodec: MF.V3.Settings.CaptureImage.CaptureImage.Codec,\tgrayscale: bool,\twidth: int,\theight: int,\tstep: int)"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.grayscale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"fullname": "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step", "modulename": "three.MF.V3.Descriptors.CaptureImage", "qualname": "CaptureImage.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export": {"fullname": "three.MF.V3.Descriptors.Export", "modulename": "three.MF.V3.Descriptors.Export", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export": {"fullname": "three.MF.V3.Descriptors.Export.Export", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export", "kind": "class", "doc": "

Scan data descriptor.

\n"}, "three.MF.V3.Descriptors.Export.Export.__init__": {"fullname": "three.MF.V3.Descriptors.Export.Export.__init__", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.__init__", "kind": "function", "doc": "

\n", "signature": "(\tformat: MF.V3.Settings.Export.Export.Format,\textension: str,\tdescription: str,\tnormals: bool,\tcolors: bool,\ttextures: three.MF.V3.Descriptors.Export.Export.Texture,\tfaces: List[three.MF.V3.Descriptors.Export.Export.Face] = None)"}, "three.MF.V3.Descriptors.Export.Export.Face": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face", "kind": "class", "doc": "

Geometry face types.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.NoFace", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.NoFace", "kind": "variable", "doc": "

\n", "default_value": "<Face.NoFace: 'NoFace'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Point", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Point", "kind": "variable", "doc": "

\n", "default_value": "<Face.Point: 'Point'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Line", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Line", "kind": "variable", "doc": "

\n", "default_value": "<Face.Line: 'Line'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Triangle", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Triangle", "kind": "variable", "doc": "

\n", "default_value": "<Face.Triangle: 'Triangle'>"}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"fullname": "three.MF.V3.Descriptors.Export.Export.Face.Quad", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Face.Quad", "kind": "variable", "doc": "

\n", "default_value": "<Face.Quad: 'Quad'>"}, "three.MF.V3.Descriptors.Export.Export.Texture": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture", "kind": "class", "doc": "

Texture support types.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture.Empty", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Texture.Empty: 'None'>"}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture.Single", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture.Single", "kind": "variable", "doc": "

\n", "default_value": "<Texture.Single: 'Single'>"}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"fullname": "three.MF.V3.Descriptors.Export.Export.Texture.Multiple", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.Texture.Multiple", "kind": "variable", "doc": "

\n", "default_value": "<Texture.Multiple: 'Multiple'>"}, "three.MF.V3.Descriptors.Export.Export.format": {"fullname": "three.MF.V3.Descriptors.Export.Export.format", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.extension": {"fullname": "three.MF.V3.Descriptors.Export.Export.extension", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.extension", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.description": {"fullname": "three.MF.V3.Descriptors.Export.Export.description", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.description", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.normals": {"fullname": "three.MF.V3.Descriptors.Export.Export.normals", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.normals", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.colors": {"fullname": "three.MF.V3.Descriptors.Export.Export.colors", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.colors", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.textures": {"fullname": "three.MF.V3.Descriptors.Export.Export.textures", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.textures", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Export.Export.faces": {"fullname": "three.MF.V3.Descriptors.Export.Export.faces", "modulename": "three.MF.V3.Descriptors.Export", "qualname": "Export.faces", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap": {"fullname": "three.MF.V3.Descriptors.HeatMap", "modulename": "three.MF.V3.Descriptors.HeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap", "kind": "class", "doc": "

Heat map descriptor.

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcount: int,\tmin: float,\tmax: float,\tmedian: float,\tmean: float,\tstddev: float,\toutlierDistance: float)"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.count", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.count", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.min", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.max", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.median", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.median", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.mean", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.mean", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.stddev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"fullname": "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance", "modulename": "three.MF.V3.Descriptors.HeatMap", "qualname": "HeatMap.outlierDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image": {"fullname": "three.MF.V3.Descriptors.Image", "modulename": "three.MF.V3.Descriptors.Image", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image": {"fullname": "three.MF.V3.Descriptors.Image.Image", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image", "kind": "class", "doc": "

Image descriptor.

\n"}, "three.MF.V3.Descriptors.Image.Image.__init__": {"fullname": "three.MF.V3.Descriptors.Image.Image.__init__", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.__init__", "kind": "function", "doc": "

\n", "signature": "(width: int, height: int, step: int, type: int)"}, "three.MF.V3.Descriptors.Image.Image.width": {"fullname": "three.MF.V3.Descriptors.Image.Image.width", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image.height": {"fullname": "three.MF.V3.Descriptors.Image.Image.height", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image.step": {"fullname": "three.MF.V3.Descriptors.Image.Image.step", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Image.Image.type": {"fullname": "three.MF.V3.Descriptors.Image.Image.type", "modulename": "three.MF.V3.Descriptors.Image", "qualname": "Image.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import": {"fullname": "three.MF.V3.Descriptors.Import", "modulename": "three.MF.V3.Descriptors.Import", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import": {"fullname": "three.MF.V3.Descriptors.Import.Import", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import", "kind": "class", "doc": "

Import scan descriptor.

\n"}, "three.MF.V3.Descriptors.Import.Import.__init__": {"fullname": "three.MF.V3.Descriptors.Import.Import.__init__", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.__init__", "kind": "function", "doc": "

\n", "signature": "(\tgroups: MF.V3.Descriptors.Project.Project.Group,\timported: List[three.MF.V3.Descriptors.Import.Import.Imported] = None,\tignored: List[three.MF.V3.Descriptors.Import.Import.Ignored] = None)"}, "three.MF.V3.Descriptors.Import.Import.Error": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error", "kind": "class", "doc": "

Import error codes.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.Unspecified", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.Unspecified", "kind": "variable", "doc": "

\n", "default_value": "<Error.Unspecified: 'Unspecified'>"}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.FileNotSupported", "kind": "variable", "doc": "

\n", "default_value": "<Error.FileNotSupported: 'FileNotSupported'>"}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.CannotReadFile", "kind": "variable", "doc": "

\n", "default_value": "<Error.CannotReadFile: 'CannotReadFile'>"}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.MeshIsEmpty", "kind": "variable", "doc": "

\n", "default_value": "<Error.MeshIsEmpty: 'MeshIsEmpty'>"}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"fullname": "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Error.NotEnoughStorage", "kind": "variable", "doc": "

\n", "default_value": "<Error.NotEnoughStorage: 'NotEnoughStorage'>"}, "three.MF.V3.Descriptors.Import.Import.Imported": {"fullname": "three.MF.V3.Descriptors.Import.Import.Imported", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Imported", "kind": "class", "doc": "

A file that was successfully imported to the project.

\n"}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"fullname": "three.MF.V3.Descriptors.Import.Import.Imported.__init__", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Imported.__init__", "kind": "function", "doc": "

\n", "signature": "(file: str)"}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"fullname": "three.MF.V3.Descriptors.Import.Import.Imported.file", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Imported.file", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored", "kind": "class", "doc": "

A file that failed to be imported to the project.

\n"}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored.__init__", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored.__init__", "kind": "function", "doc": "

\n", "signature": "(file: str, error: three.MF.V3.Descriptors.Import.Import.Error)"}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored.file", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored.file", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"fullname": "three.MF.V3.Descriptors.Import.Import.Ignored.error", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.Ignored.error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.groups": {"fullname": "three.MF.V3.Descriptors.Import.Import.groups", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.imported": {"fullname": "three.MF.V3.Descriptors.Import.Import.imported", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.imported", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Import.Import.ignored": {"fullname": "three.MF.V3.Descriptors.Import.Import.ignored", "modulename": "three.MF.V3.Descriptors.Import", "qualname": "Import.ignored", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge": {"fullname": "three.MF.V3.Descriptors.Merge", "modulename": "three.MF.V3.Descriptors.Merge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge": {"fullname": "three.MF.V3.Descriptors.Merge.Merge", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge", "kind": "class", "doc": "

Merge descriptor.

\n"}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.__init__", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: int,\ttextures: int,\tmaxSimplifyCount: int,\tmeshes: List[three.MF.V3.Descriptors.Merge.Merge.Mesh] = None)"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh", "kind": "class", "doc": "

Mesh descriptor.

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tname: str,\ttriangles: int,\tquads: int,\tpositions: int,\tnormals: int,\tuvs: int,\tsize: int)"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.name", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.triangles", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.quads", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.positions", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.normals", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.uvs", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.Mesh.size", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.Mesh.size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.scans", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.textures", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.textures", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.maxSimplifyCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"fullname": "three.MF.V3.Descriptors.Merge.Merge.meshes", "modulename": "three.MF.V3.Descriptors.Merge", "qualname": "Merge.meshes", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Network": {"fullname": "three.MF.V3.Descriptors.Network", "modulename": "three.MF.V3.Descriptors.Network", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Network.Interface": {"fullname": "three.MF.V3.Descriptors.Network.Interface", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface", "kind": "class", "doc": "

Network interface descriptor.

\n"}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"fullname": "three.MF.V3.Descriptors.Network.Interface.__init__", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.__init__", "kind": "function", "doc": "

\n", "signature": "(name: str, ip: str, ssid: str)"}, "three.MF.V3.Descriptors.Network.Interface.name": {"fullname": "three.MF.V3.Descriptors.Network.Interface.name", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Network.Interface.ip": {"fullname": "three.MF.V3.Descriptors.Network.Interface.ip", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.ip", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"fullname": "three.MF.V3.Descriptors.Network.Interface.ssid", "modulename": "three.MF.V3.Descriptors.Network", "qualname": "Interface.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project": {"fullname": "three.MF.V3.Descriptors.Project", "modulename": "three.MF.V3.Descriptors.Project", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project": {"fullname": "three.MF.V3.Descriptors.Project.Project", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project", "kind": "class", "doc": "

V3 project descriptor.

\n"}, "three.MF.V3.Descriptors.Project.Project.__init__": {"fullname": "three.MF.V3.Descriptors.Project.Project.__init__", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str,\tgroups: three.MF.V3.Descriptors.Project.Project.Group)"}, "three.MF.V3.Descriptors.Project.Project.Brief": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief", "kind": "class", "doc": "

V3 project brief descriptor.

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.__init__", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, name: str, size: int, modified: List[int] = None)"}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.index", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.name", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.size", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"fullname": "three.MF.V3.Descriptors.Project.Project.Brief.modified", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Brief.modified", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group", "kind": "class", "doc": "

V3 project scan group tree descriptor.

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.__init__", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None,\tscan: int = None,\tgroups: List[three.MF.V3.Descriptors.Project.Project.Group] = None)"}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.index", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.name", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.color", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.visible", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.visible", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.collapsed", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.collapsed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.rotation", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.translation", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.scan", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.scan", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"fullname": "three.MF.V3.Descriptors.Project.Project.Group.groups", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.Group.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.index": {"fullname": "three.MF.V3.Descriptors.Project.Project.index", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.name": {"fullname": "three.MF.V3.Descriptors.Project.Project.name", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Project.Project.groups": {"fullname": "three.MF.V3.Descriptors.Project.Project.groups", "modulename": "three.MF.V3.Descriptors.Project", "qualname": "Project.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions": {"fullname": "three.MF.V3.Descriptors.ProjectActions", "modulename": "three.MF.V3.Descriptors.ProjectActions", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction", "kind": "class", "doc": "

Descriptor for a project undo/redo action.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttask: str,\tproject: MF.V3.Descriptors.Project.Project = None,\tscans: List[three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan] = None)"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan", "kind": "class", "doc": "

Scan vertices removal/insertion metadata.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, vertices: int, triangles: int)"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.vertices", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.Scan.triangles", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.task", "kind": "variable", "doc": "

The updated project data after undo or redo.\nIf undefined, then there was no change to the project.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.project", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectAction.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions", "kind": "class", "doc": "

Project undo and redo action descriptors.

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions.__init__", "kind": "function", "doc": "

\n", "signature": "(undo: List[str] = None, redo: List[str] = None)"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions.undo", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"fullname": "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo", "modulename": "three.MF.V3.Descriptors.ProjectActions", "qualname": "ProjectActions.redo", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ProtocolInfo": {"fullname": "three.MF.V3.Descriptors.ProtocolInfo", "modulename": "three.MF.V3.Descriptors.ProtocolInfo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"fullname": "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo", "modulename": "three.MF.V3.Descriptors.ProtocolInfo", "qualname": "ProtocolInfo", "kind": "class", "doc": "

Desktop-processing protocol capability descriptor, returned by the\nGetProtocolInfo task. Lets a desktop engine detect what a connected\nscanner supports and degrade gracefully against older firmware.

\n"}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"fullname": "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__", "modulename": "three.MF.V3.Descriptors.ProtocolInfo", "qualname": "ProtocolInfo.__init__", "kind": "function", "doc": "

\n", "signature": "(version: int, capabilities: List[str] = None)"}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"fullname": "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version", "modulename": "three.MF.V3.Descriptors.ProtocolInfo", "qualname": "ProtocolInfo.version", "kind": "variable", "doc": "

Capability tokens supported by this server.

\n\n

Known capabilities:

\n\n
    \n
  • \"scanCaptureStreaming\": the server can stream raw scan captures to a\nclient for desktop processing (see the SetProcessingDevices task\nand the ScanCapture descriptor).
  • \n
\n"}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"fullname": "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities", "modulename": "three.MF.V3.Descriptors.ProtocolInfo", "qualname": "ProtocolInfo.capabilities", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices": {"fullname": "three.MF.V3.Descriptors.RemoveVertices", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices", "kind": "class", "doc": "

Descriptor a remove vertices task.

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: List[three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan] = None,\tgroups: MF.V3.Descriptors.Project.Project.Group = None)"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan", "kind": "class", "doc": "

Scan vertex and triangle removal metadata.

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, vertices: int, triangles: int)"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.vertices", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.Scan.triangles", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.scans", "kind": "variable", "doc": "

The updated project data after undo or redo.\nIf undefined, then there was no change to the project.

\n"}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"fullname": "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups", "modulename": "three.MF.V3.Descriptors.RemoveVertices", "qualname": "RemoveVertices.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture": {"fullname": "three.MF.V3.Descriptors.ScanCapture", "modulename": "three.MF.V3.Descriptors.ScanCapture", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture", "kind": "class", "doc": "

Raw scan capture image descriptor streamed to clients that process scans\nthemselves (SetProcessingDevices client processing). Each stereo capture\nis sent as two buffers, one per camera, described by this descriptor.

\n\n

The buffer payload is the raw image data: rows rows of step bytes,\npixel format given by the OpenCV type code in type.

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.__init__", "kind": "function", "doc": "

\n", "signature": "(\trows: int,\tcols: int,\ttype: int,\tstep: int,\tcamera: int,\tfocus: int,\tindex: int,\torientation: int,\tfrequency: int,\tphase: int,\tangle: float,\ttexture: bool)"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.rows", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.cols", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.orientation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.frequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.phase", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.angle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"fullname": "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture", "modulename": "three.MF.V3.Descriptors.ScanCapture", "qualname": "ScanCapture.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData": {"fullname": "three.MF.V3.Descriptors.ScanData", "modulename": "three.MF.V3.Descriptors.ScanData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData", "kind": "class", "doc": "

Scan data descriptor.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.__init__", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str,\tbuffers: List[three.MF.V3.Descriptors.ScanData.ScanData.Buffer] = None,\tmean: List[float] = None,\tstddev: List[float] = None,\taxisAlignedBoundingBox: List[float] = None)"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer", "kind": "class", "doc": "

Scan buffer descriptor.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tstride: int,\tcomponents: List[three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component] = None)"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component", "kind": "class", "doc": "

Scan buffer component descriptor.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type,\tsize: int,\toffset: int,\tnormalized: bool)"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type", "kind": "class", "doc": "

Scan buffer component types.

\n", "bases": "enum.Enum"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Position", "kind": "variable", "doc": "

\n", "default_value": "<Type.Position: 'Position'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Normal", "kind": "variable", "doc": "

\n", "default_value": "<Type.Normal: 'Normal'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Color", "kind": "variable", "doc": "

\n", "default_value": "<Type.Color: 'Color'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.UV", "kind": "variable", "doc": "

\n", "default_value": "<Type.UV: 'UV'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Quality", "kind": "variable", "doc": "

\n", "default_value": "<Type.Quality: 'Quality'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Triangle", "kind": "variable", "doc": "

\n", "default_value": "<Type.Triangle: 'Triangle'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.Type.Texture", "kind": "variable", "doc": "

\n", "default_value": "<Type.Texture: 'Texture'>"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.size", "kind": "variable", "doc": "

Scan buffer component offset.\nThis is the starting element for this component at every stride of the buffer.

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.offset", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.Component.normalized", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.stride", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.Buffer.components", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.index", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.name", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.buffers", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.buffers", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.mean", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.mean", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.stddev", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.stddev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"fullname": "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox", "modulename": "three.MF.V3.Descriptors.ScanData", "qualname": "ScanData.axisAlignedBoundingBox", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList": {"fullname": "three.MF.V3.Descriptors.ScannerList", "modulename": "three.MF.V3.Descriptors.ScannerList", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList", "kind": "class", "doc": "

Scanners discovered on the local network, returned by the\nDiscoverScanners task.

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscanners: List[three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner] = None)"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner", "kind": "class", "doc": "

A discovered scanner.

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner.__init__", "kind": "function", "doc": "

\n", "signature": "(name: str, host: str, ip: str, port: int, version: str)"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner.host", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner.ip", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner.port", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.Scanner.version", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"fullname": "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners", "modulename": "three.MF.V3.Descriptors.ScannerList", "qualname": "ScannerList.scanners", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerStatus": {"fullname": "three.MF.V3.Descriptors.ScannerStatus", "modulename": "three.MF.V3.Descriptors.ScannerStatus", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"fullname": "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus", "modulename": "three.MF.V3.Descriptors.ScannerStatus", "qualname": "ScannerStatus", "kind": "class", "doc": "

The desktop engine's scanner connection status.

\n\n

Returned by the GetScannerStatus task and pushed to every client as a\n{\"ScannerStatus\": {...}} message whenever the connection state changes.

\n"}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"fullname": "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__", "modulename": "three.MF.V3.Descriptors.ScannerStatus", "qualname": "ScannerStatus.__init__", "kind": "function", "doc": "

\n", "signature": "(connected: bool, host: str)"}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"fullname": "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected", "modulename": "three.MF.V3.Descriptors.ScannerStatus", "qualname": "ScannerStatus.connected", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"fullname": "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host", "modulename": "three.MF.V3.Descriptors.ScannerStatus", "qualname": "ScannerStatus.host", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings": {"fullname": "three.MF.V3.Descriptors.Settings", "modulename": "three.MF.V3.Descriptors.Settings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced", "kind": "class", "doc": "

Advanced settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcapture: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture,\tsampling: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling,\tedgeDetection: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection,\tphaseFilter: three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter,\tadaptiveSampling: three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling,\tnormalEstimation: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation,\toutlierRemoval: three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval,\tremesh: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh,\tcamera: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera,\tturntable: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use", "kind": "class", "doc": "

Use advanced settings.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Use.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture", "kind": "class", "doc": "

Capture settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\thorizontalFrequencies: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies,\tverticalFrequencies: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmin: int,\tmax: int,\tvalue: List[int] = None,\tdefault: List[int] = None)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.HorizontalFrequencies.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmin: int,\tmax: int,\tvalue: List[int] = None,\tdefault: List[int] = None)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.VerticalFrequencies.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.horizontalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Capture.verticalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling", "kind": "class", "doc": "

Sampling settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tprojectorSampleRate: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate,\timageSampleRate: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ProjectorSampleRate.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.ImageSampleRate.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.projectorSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Sampling.imageSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection", "kind": "class", "doc": "

Edge detection settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tthreshold: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold,\tlaplacianKernelRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius,\tgaussianBlurRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius,\tgaussianBlurStdDev: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev,\tmaximumWidthForProcessing: three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.Threshold.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.LaplacianKernelRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.GaussianBlurStdDev.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.MaximumWidthForProcessing.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.threshold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.laplacianKernelRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.EdgeDetection.maximumWidthForProcessing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter", "kind": "class", "doc": "

Phase filter settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tkernelRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius,\tspatialWeightStdDev: three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.KernelRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.SpatialWeightStdDev.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.kernelRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.PhaseFilter.spatialWeightStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling", "kind": "class", "doc": "

Adaptive sampling settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\ttype: three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type,\trate: three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type,\tdefault: MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Type.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.Rate.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.rate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation", "kind": "class", "doc": "

Normal estimation settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tmethod: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method,\tmaximumNeighbourCount: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount,\tmaximumNeighbourRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius,\tuseMaximumNeighbourCount: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount,\tuseMaximumNeighbourRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method,\tdefault: MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.Method.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourCount.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.MaximumNeighbourRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.UseMaximumNeighbourRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval", "kind": "class", "doc": "

Outlier removal settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tneighbourCount: three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount,\tneighbourRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourCount.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.NeighbourRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh", "kind": "class", "doc": "

Remesh settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\tvoxelSize: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize,\tdepth: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth,\tscale: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale,\tlinearInterpolation: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.VoxelSize.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Depth.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.Scale.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.LinearInterpolation.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.voxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.depth", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Remesh.linearInterpolation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera", "kind": "class", "doc": "

Camera settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuseContinuousExposureValues: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues", "kind": "class", "doc": "

Use continuous exposure values settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.UseContinuousExposureValues.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Camera.useContinuousExposureValues", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable", "kind": "class", "doc": "

Turntable settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tuse: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use,\trampAngle: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle,\tpointClippingRadius: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius,\tpointClippingMinHeight: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight,\tpointClippingMaxHeight: three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle", "kind": "class", "doc": "

The angle in degrees to slow down the turntable at the end of a rotation.

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.RampAngle.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingRadius.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMinHeight.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight", "kind": "class", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.PointClippingMaxHeight.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.rampAngle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMinHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMaxHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.sampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.edgeDetection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.phaseFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.adaptiveSampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.normalEstimation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.outlierRemoval", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.remesh", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable", "modulename": "three.MF.V3.Descriptors.Settings.Advanced", "qualname": "Advanced.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera": {"fullname": "three.MF.V3.Descriptors.Settings.Camera", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera", "kind": "class", "doc": "

Camera settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tautoExposure: three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure,\texposure: three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure,\tanalogGain: three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain,\tdigitalGain: three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain,\tfocus: three.MF.V3.Descriptors.Settings.Camera.Camera.Focus)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure", "kind": "class", "doc": "

Auto exposure.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AutoExposure.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure", "kind": "class", "doc": "

Exposure.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Exposure.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain", "kind": "class", "doc": "

Analog gain.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.AnalogGain.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain", "kind": "class", "doc": "

Digital gain.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.DigitalGain.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus", "kind": "class", "doc": "

Focus settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value,\tbox: three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value", "kind": "class", "doc": "

Focus value.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmin: int,\tmax: int,\tvalue: List[int] = None,\tdefault: List[int] = None)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Value.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box", "kind": "class", "doc": "

Auto focus box.

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: List[MF.V3.Settings.Rectangle.Rectangle] = None,\tdefault: List[MF.V3.Settings.Rectangle.Rectangle] = None)"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.Box.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.Focus.box", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.autoExposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.exposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.analogGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.digitalGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"fullname": "three.MF.V3.Descriptors.Settings.Camera.Camera.focus", "modulename": "three.MF.V3.Descriptors.Settings.Camera", "qualname": "Camera.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture", "kind": "class", "doc": "

Capture settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Descriptors.Settings.Capture.Capture.Quality,\ttexture: three.MF.V3.Descriptors.Settings.Capture.Capture.Texture,\tblendCount: three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount,\thorizontalBlendFrequency: three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency,\tverticalBlendFrequency: three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality", "kind": "class", "doc": "

Capture quality preset.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Quality.Quality,\tdefault: MF.V3.Settings.Quality.Quality)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Quality.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture", "kind": "class", "doc": "

Capture texture.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.Texture.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount", "kind": "class", "doc": "

Capture image blend count for noise reduction.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendCount.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency", "kind": "class", "doc": "

The starting frequency for which multiple capture images are blended.

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.BlendFrequency.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.quality", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.texture", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.blendCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.horizontalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"fullname": "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency", "modulename": "three.MF.V3.Descriptors.Settings.Capture", "qualname": "Capture.verticalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n": {"fullname": "three.MF.V3.Descriptors.Settings.I18n", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n", "kind": "class", "doc": "

I18n language settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.__init__", "kind": "function", "doc": "

\n", "signature": "(language: three.MF.V3.Descriptors.Settings.I18n.I18n.Language)"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language", "kind": "class", "doc": "

Language settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.I18n.I18n.Language,\tdefault: MF.V3.Settings.I18n.I18n.Language)"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.Language.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"fullname": "three.MF.V3.Descriptors.Settings.I18n.I18n.language", "modulename": "three.MF.V3.Descriptors.Settings.I18n", "qualname": "I18n.language", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector": {"fullname": "three.MF.V3.Descriptors.Settings.Projector", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector", "kind": "class", "doc": "

Projector settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.__init__", "kind": "function", "doc": "

\n", "signature": "(\tbrightness: three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness,\ton: three.MF.V3.Descriptors.Settings.Projector.Projector.On)"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness", "kind": "class", "doc": "

Projector brightness.

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.Brightness.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On", "kind": "class", "doc": "

Projector on/off.

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.On.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.brightness", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"fullname": "three.MF.V3.Descriptors.Settings.Projector.Projector.on", "modulename": "three.MF.V3.Descriptors.Settings.Projector", "qualname": "Projector.on", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner", "kind": "class", "doc": "

Scanner settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.__init__", "kind": "function", "doc": "

\n", "signature": "(\tadvanced: MF.V3.Descriptors.Settings.Advanced.Advanced,\tcamera: MF.V3.Descriptors.Settings.Camera.Camera,\tcapture: MF.V3.Descriptors.Settings.Capture.Capture,\tprojector: MF.V3.Descriptors.Settings.Projector.Projector,\ti18n: MF.V3.Descriptors.Settings.I18n.I18n,\tstyle: MF.V3.Descriptors.Settings.Style.Style,\tturntable: MF.V3.Descriptors.Settings.Turntable.Turntable,\ttutorials: MF.V3.Descriptors.Settings.Tutorials.Tutorials,\tviewer: MF.V3.Descriptors.Settings.Viewer.Viewer,\tsoftware: MF.V3.Descriptors.Settings.Software.Software)"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.advanced", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.projector", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.i18n", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.style", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.tutorials", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.viewer", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"fullname": "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software", "modulename": "three.MF.V3.Descriptors.Settings.Scanner", "qualname": "Scanner.software", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software": {"fullname": "three.MF.V3.Descriptors.Settings.Software", "modulename": "three.MF.V3.Descriptors.Settings.Software", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software", "kind": "class", "doc": "

Software settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.__init__", "kind": "function", "doc": "

\n", "signature": "(\tupdateMajor: three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor)"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor", "kind": "class", "doc": "

Enable major version updates which can have breaking API changes.

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.UpdateMajor.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"fullname": "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor", "modulename": "three.MF.V3.Descriptors.Settings.Software", "qualname": "Software.updateMajor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style": {"fullname": "three.MF.V3.Descriptors.Settings.Style", "modulename": "three.MF.V3.Descriptors.Settings.Style", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style", "kind": "class", "doc": "

Style settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.__init__", "kind": "function", "doc": "

\n", "signature": "(theme: three.MF.V3.Descriptors.Settings.Style.Style.Theme)"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme", "kind": "class", "doc": "

Theme settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme.__init__", "kind": "function", "doc": "

\n", "signature": "(\tvalue: MF.V3.Settings.Style.Style.Theme,\tdefault: MF.V3.Settings.Style.Style.Theme)"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.Theme.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"fullname": "three.MF.V3.Descriptors.Settings.Style.Style.theme", "modulename": "three.MF.V3.Descriptors.Settings.Style", "qualname": "Style.theme", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable", "kind": "class", "doc": "

Turntable settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans,\tsweep: three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep,\tuse: three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans", "kind": "class", "doc": "

The number of turntable scans.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Scans.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep", "kind": "class", "doc": "

Turntable angle sweep in degrees.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.__init__", "kind": "function", "doc": "

\n", "signature": "(value: int, default: int, min: int, max: int)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Sweep.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use", "kind": "class", "doc": "

Use the turntable.

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.Use.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.sweep", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"fullname": "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use", "modulename": "three.MF.V3.Descriptors.Settings.Turntable", "qualname": "Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials", "kind": "class", "doc": "

Tutorials settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.__init__", "kind": "function", "doc": "

\n", "signature": "(\tshow: three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show,\tviewed: three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show", "kind": "class", "doc": "

Tutorials to show.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show.__init__", "kind": "function", "doc": "

\n", "signature": "(value: bool, default: bool)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Show.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed", "kind": "class", "doc": "

Viewed tutorials.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.__init__", "kind": "function", "doc": "

\n", "signature": "(\tpages: three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages", "kind": "class", "doc": "

Viewed tutorials pages.

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages.__init__", "kind": "function", "doc": "

\n", "signature": "(value: List[str] = None, default: List[str] = None)"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.Pages.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.Viewed.pages", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.show", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"fullname": "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed", "modulename": "three.MF.V3.Descriptors.Settings.Tutorials", "qualname": "Tutorials.viewed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer", "kind": "class", "doc": "

3D Viewer settings descriptor.

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttextureOpacity: three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity)"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity", "kind": "class", "doc": "

Texture opacity.

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.__init__", "kind": "function", "doc": "

\n", "signature": "(value: float, default: float, min: float, max: float)"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.value", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.default", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.TextureOpacity.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"fullname": "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity", "modulename": "three.MF.V3.Descriptors.Settings.Viewer", "qualname": "Viewer.textureOpacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software": {"fullname": "three.MF.V3.Descriptors.Software", "modulename": "three.MF.V3.Descriptors.Software", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software": {"fullname": "three.MF.V3.Descriptors.Software.Software", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software", "kind": "class", "doc": "

Software descriptor.

\n"}, "three.MF.V3.Descriptors.Software.Software.__init__": {"fullname": "three.MF.V3.Descriptors.Software.Software.__init__", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.__init__", "kind": "function", "doc": "

\n", "signature": "(\tfrontend: three.MF.V3.Descriptors.Software.Software.Package,\tserver: three.MF.V3.Descriptors.Software.Software.Package)"}, "three.MF.V3.Descriptors.Software.Software.Package": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package", "kind": "class", "doc": "

Software package descriptor.

\n"}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.__init__", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.__init__", "kind": "function", "doc": "

\n", "signature": "(installed: str, update: str, changelog: str)"}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.installed", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.installed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.update", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.update", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"fullname": "three.MF.V3.Descriptors.Software.Software.Package.changelog", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.Package.changelog", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.frontend": {"fullname": "three.MF.V3.Descriptors.Software.Software.frontend", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.frontend", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Software.Software.server": {"fullname": "three.MF.V3.Descriptors.Software.Software.server", "modulename": "three.MF.V3.Descriptors.Software", "qualname": "Software.server", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.StorageInfo": {"fullname": "three.MF.V3.Descriptors.StorageInfo", "modulename": "three.MF.V3.Descriptors.StorageInfo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo", "kind": "class", "doc": "

Storage space of the desktop engine's local workspace and, when a scanner\nis connected, of the scanner. Returned by the StorageInfo task.

\n"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.__init__", "kind": "function", "doc": "

\n", "signature": "(\tlocal: three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space,\tscanner: three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space = None)"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.Space", "kind": "class", "doc": "

Storage space of one side.

\n"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.Space.__init__", "kind": "function", "doc": "

\n", "signature": "(available: int, capacity: int)"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.Space.available", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.Space.capacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.local", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"fullname": "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner", "modulename": "three.MF.V3.Descriptors.StorageInfo", "qualname": "StorageInfo.scanner", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System": {"fullname": "three.MF.V3.Descriptors.System", "modulename": "three.MF.V3.Descriptors.System", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System": {"fullname": "three.MF.V3.Descriptors.System.System", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System", "kind": "class", "doc": "

System descriptor.

\n"}, "three.MF.V3.Descriptors.System.System.__init__": {"fullname": "three.MF.V3.Descriptors.System.System.__init__", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.__init__", "kind": "function", "doc": "

\n", "signature": "(\tserialNumber: str,\tdiskSpace: three.MF.V3.Descriptors.System.System.DiskSpace,\tpublicKey: str)"}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace", "kind": "class", "doc": "

Disk space descriptor.

\n"}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace.__init__", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace.__init__", "kind": "function", "doc": "

\n", "signature": "(capacity: int, available: int)"}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace.capacity", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace.capacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"fullname": "three.MF.V3.Descriptors.System.System.DiskSpace.available", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.DiskSpace.available", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.serialNumber": {"fullname": "three.MF.V3.Descriptors.System.System.serialNumber", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.serialNumber", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.diskSpace": {"fullname": "three.MF.V3.Descriptors.System.System.diskSpace", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.diskSpace", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.System.System.publicKey": {"fullname": "three.MF.V3.Descriptors.System.System.publicKey", "modulename": "three.MF.V3.Descriptors.System", "qualname": "System.publicKey", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Transform": {"fullname": "three.MF.V3.Descriptors.Transform", "modulename": "three.MF.V3.Descriptors.Transform", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Transform.Transform": {"fullname": "three.MF.V3.Descriptors.Transform.Transform", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform", "kind": "class", "doc": "

V3 transform descriptor.

\n"}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"fullname": "three.MF.V3.Descriptors.Transform.Transform.__init__", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform.__init__", "kind": "function", "doc": "

Axis-angle rotation vector.\nThe direction of the vector is the rotation axis.\nThe magnitude of the vector is rotation angle in radians.

\n", "signature": "(rotation: List[float] = None, translation: List[float] = None)"}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"fullname": "three.MF.V3.Descriptors.Transform.Transform.rotation", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"fullname": "three.MF.V3.Descriptors.Transform.Transform.translation", "modulename": "three.MF.V3.Descriptors.Transform", "qualname": "Transform.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame": {"fullname": "three.MF.V3.Descriptors.VideoFrame", "modulename": "three.MF.V3.Descriptors.VideoFrame", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame", "kind": "class", "doc": "

Video frame descriptor.

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcodec: MF.V3.Settings.Video.Video.Codec,\tformat: MF.V3.Settings.Video.Video.Format,\twidth: int,\theight: int,\tstep: int,\tnumber: int,\ttimestamp: int,\tduration: int,\tcalibrationCard: MF.V3.Descriptors.Calibration.DetectedCard)"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.number", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.timestamp", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.duration", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"fullname": "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard", "modulename": "three.MF.V3.Descriptors.VideoFrame", "qualname": "VideoFrame.calibrationCard", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi": {"fullname": "three.MF.V3.Descriptors.Wifi", "modulename": "three.MF.V3.Descriptors.Wifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi", "kind": "class", "doc": "

The wifi descriptor.

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.__init__", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.__init__", "kind": "function", "doc": "

\n", "signature": "(\tssid: str,\tnetworks: List[three.MF.V3.Descriptors.Wifi.Wifi.Network] = None)"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network", "kind": "class", "doc": "

The wifi network descriptor.

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.__init__", "kind": "function", "doc": "

\n", "signature": "(\tssid: str,\tisPublic: bool,\tisActive: bool,\tpassword: str = None,\tquality: int = None)"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.isPublic", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.isActive", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.password", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.password", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.Network.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.ssid", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"fullname": "three.MF.V3.Descriptors.Wifi.Wifi.networks", "modulename": "three.MF.V3.Descriptors.Wifi", "qualname": "Wifi.networks", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings": {"fullname": "three.MF.V3.Settings", "modulename": "three.MF.V3.Settings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Advanced": {"fullname": "three.MF.V3.Settings.Advanced", "modulename": "three.MF.V3.Settings.Advanced", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced": {"fullname": "three.MF.V3.Settings.Advanced.Advanced", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced", "kind": "class", "doc": "

Advanced settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcapture: three.MF.V3.Settings.Advanced.Advanced.Capture = None,\tsampling: three.MF.V3.Settings.Advanced.Advanced.Sampling = None,\tedgeDetection: three.MF.V3.Settings.Advanced.Advanced.EdgeDetection = None,\tphaseFilter: three.MF.V3.Settings.Advanced.Advanced.PhaseFilter = None,\tadaptiveSampling: three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling = None,\tnormalEstimation: three.MF.V3.Settings.Advanced.Advanced.NormalEstimation = None,\toutlierRemoval: three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval = None,\tremesh: three.MF.V3.Settings.Advanced.Advanced.Remesh = None,\tcamera: three.MF.V3.Settings.Advanced.Advanced.Camera = None,\tturntable: three.MF.V3.Settings.Advanced.Advanced.Turntable = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture", "kind": "class", "doc": "

Capture settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\thorizontalFrequencies: List[int] = None,\tverticalFrequencies: List[int] = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.horizontalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.verticalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Capture.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Capture.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling", "kind": "class", "doc": "

Sampling settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\tprojectorSampleRate: float = None,\timageSampleRate: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.projectorSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.imageSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Sampling.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Sampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection", "kind": "class", "doc": "

Edge detection settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tthreshold: float = None,\tlaplacianKernelRadius: int = None,\tgaussianBlurRadius: int = None,\tgaussianBlurStdDev: float = None,\tmaximumWidthForProcessing: int = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.threshold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.laplacianKernelRadius", "kind": "variable", "doc": "

Gaussian blur kernel radius. (Optional) To disable, set to 0.

\n\n

The phase images can optionally blurred before taking the Laplacian to reduce noise.\nHowever as a result, the detected edges are wider.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurRadius", "kind": "variable", "doc": "

Gaussian blur kernel standard deviation. This parameter is ignored if\ngaussianBlurSize is zero.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.gaussianBlurStdDev", "kind": "variable", "doc": "

The maximum image width for processing. (Optional) To disable, set to 0.

\n\n

If this value is greater than zero, the phase images are resized to the maximum\nwidth prior to computing the Laplacian and the the detected edges are then upsampled to the\noriginal size.

\n\n

This would be done to speed up processing or to detect edges on a larger scale.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.maximumWidthForProcessing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.EdgeDetection.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter", "kind": "class", "doc": "

Phase filter settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.__init__", "kind": "function", "doc": "

The filter kernel radius.

\n\n

A neighboring value must be within this radius to be included in the filter.\nIf the kernel radius is set to zero, the phase filtering is disabled.

\n", "signature": "(\tkernelRadius: int = None,\tspatialWeightStdDev: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.kernelRadius", "kind": "variable", "doc": "

The standard deviation of the spatial weights.

\n\n

The weight of a neighboring value is \f$ exp(-(r/s)^2) \f$ where \f$ r \f$\nis the distance to the central value and \f$ s \f$ is the spatial weight\nstandard deviation.

\n\n

If the spatial weight standard deviation is set to zero, all the spatial\nweights are uniformly set to 1.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.spatialWeightStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PhaseFilter.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling", "kind": "class", "doc": "

Adaptive sampling settings

\n\n

Adaptive sampling will downsample points in regions of low detail\nand keep points in regions of high detail.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\trate: float,\ttype: MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.rate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.AdaptiveSampling.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping", "kind": "class", "doc": "

Point32 clipping settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type = None,\ttransform: List[float] = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.transform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.PointClipping.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation", "kind": "class", "doc": "

Normal estimation settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method = None,\tmaximumNeighbourCount: int = None,\tmaximumNeighbourRadius: float = None,\tuseMaximumNeighbourCount: bool = None,\tuseMaximumNeighbourRadius: bool = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.method", "kind": "variable", "doc": "

Maximum number of nearest neighbors used to compute the normal.\nThis value is only used with the NORMAL_OPEN3D method.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.maximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.useMaximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.NormalEstimation.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval", "kind": "class", "doc": "

Radius outlier removal settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.__init__", "kind": "function", "doc": "

\n", "signature": "(\tneighbourCount: int = None,\tneighbourRadius: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.neighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.OutlierRemoval.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh", "kind": "class", "doc": "

Remesh settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: MF.V3.Settings.Merge.Merge.Quality = None,\tvoxelSize: float = None,\tdepth: int = None,\tscale: float = None,\tlinearInterpolation: bool = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.voxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.depth", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.linearInterpolation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Remesh.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Remesh.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Camera", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Camera", "kind": "class", "doc": "

Camera settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(useContinuousExposureValues: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Camera.useContinuousExposureValues", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable", "kind": "class", "doc": "

Turntable settings.

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\trampAngle: int = None,\tpointClippingRadius: float = None,\tpointClippingMinHeight: float = None,\tpointClippingMaxHeight: float = None,\tuse: bool = None)"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.rampAngle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMinHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.pointClippingMaxHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.Turntable.use", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.capture", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.sampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.sampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.edgeDetection", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.edgeDetection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.phaseFilter", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.phaseFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.adaptiveSampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.normalEstimation", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.normalEstimation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.outlierRemoval", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.remesh", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.remesh", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.camera", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"fullname": "three.MF.V3.Settings.Advanced.Advanced.turntable", "modulename": "three.MF.V3.Settings.Advanced", "qualname": "Advanced.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align": {"fullname": "three.MF.V3.Settings.Align", "modulename": "three.MF.V3.Settings.Align", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align": {"fullname": "three.MF.V3.Settings.Align.Align", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align", "kind": "class", "doc": "

Alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsource: int,\ttarget: int,\trough: three.MF.V3.Settings.Align.Align.Rough = None,\tfine: three.MF.V3.Settings.Align.Align.Fine = None)"}, "three.MF.V3.Settings.Align.Align.Points": {"fullname": "three.MF.V3.Settings.Align.Align.Points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points", "kind": "class", "doc": "

Point pair alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Points.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.__init__", "kind": "function", "doc": "

\n", "signature": "(\tpoints: List[float] = None,\tabsoluteError: float = None,\trelativeError: float = None,\tuseAllPoints: bool = None)"}, "three.MF.V3.Settings.Align.Align.Points.points": {"fullname": "three.MF.V3.Settings.Align.Align.Points.points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.points", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"fullname": "three.MF.V3.Settings.Align.Align.Points.absoluteError", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.absoluteError", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"fullname": "three.MF.V3.Settings.Align.Align.Points.relativeError", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.relativeError", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"fullname": "three.MF.V3.Settings.Align.Align.Points.useAllPoints", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Points.useAllPoints", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac", "kind": "class", "doc": "

Ransac alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.__init__", "kind": "function", "doc": "

\n", "signature": "(\tdownsampleVoxelSize: float = None,\tmaximumFeatureRadius: float = None,\tmaximumFeaturePointCount: int = None,\tmaximumMatchDistance: float = None,\tminimumMatchSimilarity: float = None,\tmutualFilter: bool = None)"}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.downsampleVoxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.maximumFeatureRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.maximumFeaturePointCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.maximumMatchDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.minimumMatchSimilarity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"fullname": "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Ransac.mutualFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.ICP": {"fullname": "three.MF.V3.Settings.Align.Align.ICP", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.ICP", "kind": "class", "doc": "

Iterative closest point alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.ICP.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.ICP.__init__", "kind": "function", "doc": "

\n", "signature": "(matchDistance: float)"}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"fullname": "three.MF.V3.Settings.Align.Align.ICP.matchDistance", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.ICP.matchDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Rough": {"fullname": "three.MF.V3.Settings.Align.Align.Rough", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough", "kind": "class", "doc": "

Rough alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Align.Align.Rough.Method,\transac: three.MF.V3.Settings.Align.Align.Ransac = None,\tpoints: three.MF.V3.Settings.Align.Align.Points = None)"}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method", "kind": "class", "doc": "

Rough alignment methods.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.Empty", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Method.Empty: 'None'>"}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.FastGlobal", "kind": "variable", "doc": "

\n", "default_value": "<Method.FastGlobal: 'FastGlobal'>"}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.Ransac", "kind": "variable", "doc": "

\n", "default_value": "<Method.Ransac: 'Ransac'>"}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.Method.Points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.Method.Points", "kind": "variable", "doc": "

\n", "default_value": "<Method.Points: 'Points'>"}, "three.MF.V3.Settings.Align.Align.Rough.method": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.ransac", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.ransac", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Rough.points": {"fullname": "three.MF.V3.Settings.Align.Align.Rough.points", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Rough.points", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine": {"fullname": "three.MF.V3.Settings.Align.Align.Fine", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine", "kind": "class", "doc": "

Fine alignment settings.

\n"}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Align.Align.Fine.Method,\ticp: three.MF.V3.Settings.Align.Align.ICP = None,\tinitialTransform: three.MF.V3.Settings.Align.Align.Fine.Transform = None)"}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Method", "kind": "class", "doc": "

Fine alignment methods.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Method.Empty", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Method.Empty", "kind": "variable", "doc": "

\n", "default_value": "<Method.Empty: 'None'>"}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Method.ICP", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Method.ICP", "kind": "variable", "doc": "

\n", "default_value": "<Method.ICP: 'ICP'>"}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform", "kind": "class", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform.__init__", "kind": "function", "doc": "

\n", "signature": "(rotation: List[float] = None, translation: List[float] = None)"}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.Transform.translation", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.Transform.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.method": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.method", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.icp", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.icp", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"fullname": "three.MF.V3.Settings.Align.Align.Fine.initialTransform", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.Fine.initialTransform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.source": {"fullname": "three.MF.V3.Settings.Align.Align.source", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.source", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.target": {"fullname": "three.MF.V3.Settings.Align.Align.target", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.target", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.rough": {"fullname": "three.MF.V3.Settings.Align.Align.rough", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.rough", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Align.Align.fine": {"fullname": "three.MF.V3.Settings.Align.Align.fine", "modulename": "three.MF.V3.Settings.Align", "qualname": "Align.fine", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus": {"fullname": "three.MF.V3.Settings.AutoFocus", "modulename": "three.MF.V3.Settings.AutoFocus", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus", "kind": "class", "doc": "

Auto focus settings.

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.__init__", "kind": "function", "doc": "

Apply the final focus value to both cameras.\nThis setting is ignored if more than one camera is selected.

\n", "signature": "(\tapplyAll: bool,\tcameras: List[three.MF.V3.Settings.AutoFocus.AutoFocus.Camera] = None)"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera", "kind": "class", "doc": "

Auto focus camera settings.

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, box: MF.V3.Settings.Rectangle.Rectangle = None)"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.Camera.box", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.applyAll", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"fullname": "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras", "modulename": "three.MF.V3.Settings.AutoFocus", "qualname": "AutoFocus.cameras", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.BoundingBox": {"fullname": "three.MF.V3.Settings.BoundingBox", "modulename": "three.MF.V3.Settings.BoundingBox", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox", "kind": "class", "doc": "

Bounding box settings.

\n"}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection,\taxisAligned: bool)"}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox.selection", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox.selection", "kind": "variable", "doc": "

If true, align the bounding box with the world axes.\nOtherwise orient the bounding box with the scans.

\n"}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"fullname": "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned", "modulename": "three.MF.V3.Settings.BoundingBox", "qualname": "BoundingBox.axisAligned", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera": {"fullname": "three.MF.V3.Settings.Camera", "modulename": "three.MF.V3.Settings.Camera", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera": {"fullname": "three.MF.V3.Settings.Camera.Camera", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera", "kind": "class", "doc": "

Camera settings.

\n"}, "three.MF.V3.Settings.Camera.Camera.__init__": {"fullname": "three.MF.V3.Settings.Camera.Camera.__init__", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: List[int] = None,\tautoExposure: bool = None,\texposure: int = None,\tanalogGain: float = None,\tdigitalGain: int = None,\tfocus: int = None)"}, "three.MF.V3.Settings.Camera.Camera.selection": {"fullname": "three.MF.V3.Settings.Camera.Camera.selection", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"fullname": "three.MF.V3.Settings.Camera.Camera.autoExposure", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.autoExposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.exposure": {"fullname": "three.MF.V3.Settings.Camera.Camera.exposure", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.exposure", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"fullname": "three.MF.V3.Settings.Camera.Camera.analogGain", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.analogGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"fullname": "three.MF.V3.Settings.Camera.Camera.digitalGain", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.digitalGain", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Camera.Camera.focus": {"fullname": "three.MF.V3.Settings.Camera.Camera.focus", "modulename": "three.MF.V3.Settings.Camera", "qualname": "Camera.focus", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture": {"fullname": "three.MF.V3.Settings.Capture", "modulename": "three.MF.V3.Settings.Capture", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture": {"fullname": "three.MF.V3.Settings.Capture.Capture", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture", "kind": "class", "doc": "

Capture settings.

\n"}, "three.MF.V3.Settings.Capture.Capture.__init__": {"fullname": "three.MF.V3.Settings.Capture.Capture.__init__", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: MF.V3.Settings.Quality.Quality = None,\ttexture: bool = None,\tcalibrationCard: bool = None,\thorizontalFrequencies: List[int] = None,\tverticalFrequencies: List[int] = None,\tblendCount: int = None,\thorizontalBlendFrequency: int = None,\tverticalBlendFrequency: int = None)"}, "three.MF.V3.Settings.Capture.Capture.quality": {"fullname": "three.MF.V3.Settings.Capture.Capture.quality", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.texture": {"fullname": "three.MF.V3.Settings.Capture.Capture.texture", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"fullname": "three.MF.V3.Settings.Capture.Capture.calibrationCard", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.calibrationCard", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"fullname": "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.horizontalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"fullname": "three.MF.V3.Settings.Capture.Capture.verticalFrequencies", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.verticalFrequencies", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"fullname": "three.MF.V3.Settings.Capture.Capture.blendCount", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.blendCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"fullname": "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.horizontalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"fullname": "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency", "modulename": "three.MF.V3.Settings.Capture", "qualname": "Capture.verticalBlendFrequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage": {"fullname": "three.MF.V3.Settings.CaptureImage", "modulename": "three.MF.V3.Settings.CaptureImage", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage", "kind": "class", "doc": "

Capture image settings.

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: List[int] = None,\tcodec: three.MF.V3.Settings.CaptureImage.CaptureImage.Codec = None,\tgrayscale: bool = None)"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec", "kind": "class", "doc": "

Image codecs.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.jpg", "kind": "variable", "doc": "

\n", "default_value": "<Codec.jpg: 'jpg'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.png", "kind": "variable", "doc": "

\n", "default_value": "<Codec.png: 'png'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.bmp", "kind": "variable", "doc": "

\n", "default_value": "<Codec.bmp: 'bmp'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.Codec.raw", "kind": "variable", "doc": "

\n", "default_value": "<Codec.raw: 'raw'>"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.selection", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.codec", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"fullname": "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale", "modulename": "three.MF.V3.Settings.CaptureImage", "qualname": "CaptureImage.grayscale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CopyGroups": {"fullname": "three.MF.V3.Settings.CopyGroups", "modulename": "three.MF.V3.Settings.CopyGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups", "kind": "class", "doc": "

Copy scan groups settings.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsourceIndexes: List[int] = None,\ttargetIndex: int = None,\tchildPosition: int = None,\tnameSuffix: str = None,\tenumerate: bool = None)"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.sourceIndexes", "kind": "variable", "doc": "

The index of the group into which the source groups are copied.\nIf unspecified the copied groups are inserted after their respective source groups within the same parent group.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.targetIndex", "kind": "variable", "doc": "

The position among the target group's children where the copied groups are inserted.\nIf unspecified the copied groups are appended to the end of the target group's children.\nIgnored if the targetIndex is unspecified or specified but does not exist.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.childPosition", "kind": "variable", "doc": "

Optional name suffix to append to the copied group names.\nIf unspecified the copied group names are unchanged.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.nameSuffix", "kind": "variable", "doc": "

Append a copy index the copied group names. e.g. (\"name-2\", \"name-3\"). Default is true.\nIf a name suffix is specified then the first copy of each source group is not enumerated,\nbut subsequent copies are.

\n"}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"fullname": "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate", "modulename": "three.MF.V3.Settings.CopyGroups", "qualname": "CopyGroups.enumerate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CopyProject": {"fullname": "three.MF.V3.Settings.CopyProject", "modulename": "three.MF.V3.Settings.CopyProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.CopyProject.CopyProject": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject", "kind": "class", "doc": "

Copy project settings.

\n"}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject.__init__", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject.__init__", "kind": "function", "doc": "

\n", "signature": "(index: int, copyName: str = None)"}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject.index", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"fullname": "three.MF.V3.Settings.CopyProject.CopyProject.copyName", "modulename": "three.MF.V3.Settings.CopyProject", "qualname": "CopyProject.copyName", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export": {"fullname": "three.MF.V3.Settings.Export", "modulename": "three.MF.V3.Settings.Export", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export": {"fullname": "three.MF.V3.Settings.Export.Export", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export", "kind": "class", "doc": "

Export settings.

\n"}, "three.MF.V3.Settings.Export.Export.__init__": {"fullname": "three.MF.V3.Settings.Export.Export.__init__", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: three.MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: three.MF.V3.Settings.Export.Export.Color = None)"}, "three.MF.V3.Settings.Export.Export.Format": {"fullname": "three.MF.V3.Settings.Export.Export.Format", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format", "kind": "class", "doc": "

Scan export formats.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Export.Export.Format.ply": {"fullname": "three.MF.V3.Settings.Export.Export.Format.ply", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.ply", "kind": "variable", "doc": "

\n", "default_value": "<Format.ply: 'ply'>"}, "three.MF.V3.Settings.Export.Export.Format.dae": {"fullname": "three.MF.V3.Settings.Export.Export.Format.dae", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.dae", "kind": "variable", "doc": "

\n", "default_value": "<Format.dae: 'dae'>"}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"fullname": "three.MF.V3.Settings.Export.Export.Format.fbx", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.fbx", "kind": "variable", "doc": "

\n", "default_value": "<Format.fbx: 'fbx'>"}, "three.MF.V3.Settings.Export.Export.Format.glb": {"fullname": "three.MF.V3.Settings.Export.Export.Format.glb", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.glb", "kind": "variable", "doc": "

\n", "default_value": "<Format.glb: 'glb'>"}, "three.MF.V3.Settings.Export.Export.Format.obj": {"fullname": "three.MF.V3.Settings.Export.Export.Format.obj", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.obj", "kind": "variable", "doc": "

\n", "default_value": "<Format.obj: 'obj'>"}, "three.MF.V3.Settings.Export.Export.Format.stl": {"fullname": "three.MF.V3.Settings.Export.Export.Format.stl", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.stl", "kind": "variable", "doc": "

\n", "default_value": "<Format.stl: 'stl'>"}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"fullname": "three.MF.V3.Settings.Export.Export.Format.xyz", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Format.xyz", "kind": "variable", "doc": "

\n", "default_value": "<Format.xyz: 'xyz'>"}, "three.MF.V3.Settings.Export.Export.Color": {"fullname": "three.MF.V3.Settings.Export.Export.Color", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color", "kind": "class", "doc": "

Settings for mapping the vertex quality to a vertex color.\nThe specific meaning of 'quality' depends on the broader context.\nIn the case heat maps, the quality is the point-to-mesh distance of the vertex.

\n"}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"fullname": "three.MF.V3.Settings.Export.Export.Color.__init__", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscale: float = None,\toffset: float = None,\tmin: float = None,\tmax: float = None)"}, "three.MF.V3.Settings.Export.Export.Color.scale": {"fullname": "three.MF.V3.Settings.Export.Export.Color.scale", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.Color.offset": {"fullname": "three.MF.V3.Settings.Export.Export.Color.offset", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.offset", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.Color.min": {"fullname": "three.MF.V3.Settings.Export.Export.Color.min", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.min", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.Color.max": {"fullname": "three.MF.V3.Settings.Export.Export.Color.max", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.Color.max", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.selection": {"fullname": "three.MF.V3.Settings.Export.Export.selection", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.texture": {"fullname": "three.MF.V3.Settings.Export.Export.texture", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.texture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.merge": {"fullname": "three.MF.V3.Settings.Export.Export.merge", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.merge", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.format": {"fullname": "three.MF.V3.Settings.Export.Export.format", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.scale": {"fullname": "three.MF.V3.Settings.Export.Export.scale", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Export.Export.color": {"fullname": "three.MF.V3.Settings.Export.Export.color", "modulename": "three.MF.V3.Settings.Export", "qualname": "Export.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group": {"fullname": "three.MF.V3.Settings.Group", "modulename": "three.MF.V3.Settings.Group", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group": {"fullname": "three.MF.V3.Settings.Group.Group", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group", "kind": "class", "doc": "

Scan group settings.

\n"}, "three.MF.V3.Settings.Group.Group.__init__": {"fullname": "three.MF.V3.Settings.Group.Group.__init__", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tname: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None)"}, "three.MF.V3.Settings.Group.Group.index": {"fullname": "three.MF.V3.Settings.Group.Group.index", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.name": {"fullname": "three.MF.V3.Settings.Group.Group.name", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.color": {"fullname": "three.MF.V3.Settings.Group.Group.color", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.visible": {"fullname": "three.MF.V3.Settings.Group.Group.visible", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.visible", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.collapsed": {"fullname": "three.MF.V3.Settings.Group.Group.collapsed", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.collapsed", "kind": "variable", "doc": "

Axis-angle rotation vector.\nThe direction of the vector is the rotation axis.\nThe magnitude of the vector is rotation angle in radians.

\n"}, "three.MF.V3.Settings.Group.Group.rotation": {"fullname": "three.MF.V3.Settings.Group.Group.rotation", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Group.Group.translation": {"fullname": "three.MF.V3.Settings.Group.Group.translation", "modulename": "three.MF.V3.Settings.Group", "qualname": "Group.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap": {"fullname": "three.MF.V3.Settings.HeatMap", "modulename": "three.MF.V3.Settings.HeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap", "kind": "class", "doc": "

Scan heat map settings.

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.__init__", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsources: List[int] = None,\ttargets: List[int] = None,\toutlierDistance: float = None)"}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.sources", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.sources", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.targets", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.targets", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"fullname": "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance", "modulename": "three.MF.V3.Settings.HeatMap", "qualname": "HeatMap.outlierDistance", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.I18n": {"fullname": "three.MF.V3.Settings.I18n", "modulename": "three.MF.V3.Settings.I18n", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.I18n.I18n": {"fullname": "three.MF.V3.Settings.I18n.I18n", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n", "kind": "class", "doc": "

I18n language settings.

\n"}, "three.MF.V3.Settings.I18n.I18n.__init__": {"fullname": "three.MF.V3.Settings.I18n.I18n.__init__", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.__init__", "kind": "function", "doc": "

\n", "signature": "(language: three.MF.V3.Settings.I18n.I18n.Language = None)"}, "three.MF.V3.Settings.I18n.I18n.Language": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language", "kind": "class", "doc": "

Available languages.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.en", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.en", "kind": "variable", "doc": "

\n", "default_value": "<Language.en: 'en'>"}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.fr", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.fr", "kind": "variable", "doc": "

\n", "default_value": "<Language.fr: 'fr'>"}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.de", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.de", "kind": "variable", "doc": "

\n", "default_value": "<Language.de: 'de'>"}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.zh", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.zh", "kind": "variable", "doc": "

\n", "default_value": "<Language.zh: 'zh'>"}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"fullname": "three.MF.V3.Settings.I18n.I18n.Language.ja", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.Language.ja", "kind": "variable", "doc": "

\n", "default_value": "<Language.ja: 'ja'>"}, "three.MF.V3.Settings.I18n.I18n.language": {"fullname": "three.MF.V3.Settings.I18n.I18n.language", "modulename": "three.MF.V3.Settings.I18n", "qualname": "I18n.language", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import": {"fullname": "three.MF.V3.Settings.Import", "modulename": "three.MF.V3.Settings.Import", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import": {"fullname": "three.MF.V3.Settings.Import.Import", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import", "kind": "class", "doc": "

Import mesh settings.

\n"}, "three.MF.V3.Settings.Import.Import.__init__": {"fullname": "three.MF.V3.Settings.Import.Import.__init__", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.__init__", "kind": "function", "doc": "

\n", "signature": "(\tname: str = None,\tscale: float = None,\tunit: three.MF.V3.Settings.Import.Import.Unit = None,\tcenter: bool = None,\tgroupIndex: int = None)"}, "three.MF.V3.Settings.Import.Import.Unit": {"fullname": "three.MF.V3.Settings.Import.Import.Unit", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit", "kind": "class", "doc": "

Unit of imported mesh positions.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Millimeter", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Millimeter", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Millimeter: 'Millimeter'>"}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Centimeter", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Centimeter", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Centimeter: 'Centimeter'>"}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Meter", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Meter", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Meter: 'Meter'>"}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Inch", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Inch", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Inch: 'Inch'>"}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"fullname": "three.MF.V3.Settings.Import.Import.Unit.Foot", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.Unit.Foot", "kind": "variable", "doc": "

\n", "default_value": "<Unit.Foot: 'Foot'>"}, "three.MF.V3.Settings.Import.Import.name": {"fullname": "three.MF.V3.Settings.Import.Import.name", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.scale": {"fullname": "three.MF.V3.Settings.Import.Import.scale", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.unit": {"fullname": "three.MF.V3.Settings.Import.Import.unit", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.unit", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.center": {"fullname": "three.MF.V3.Settings.Import.Import.center", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.center", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Import.Import.groupIndex": {"fullname": "three.MF.V3.Settings.Import.Import.groupIndex", "modulename": "three.MF.V3.Settings.Import", "qualname": "Import.groupIndex", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge": {"fullname": "three.MF.V3.Settings.Merge", "modulename": "three.MF.V3.Settings.Merge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge": {"fullname": "three.MF.V3.Settings.Merge.Merge", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge", "kind": "class", "doc": "

Scan merge settings.

\n"}, "three.MF.V3.Settings.Merge.Merge.__init__": {"fullname": "three.MF.V3.Settings.Merge.Merge.__init__", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\tremesh: three.MF.V3.Settings.Merge.Merge.Remesh = None,\tsimplify: three.MF.V3.Settings.Merge.Merge.Simplify = None,\ttexturize: bool = None)"}, "three.MF.V3.Settings.Merge.Merge.Quality": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality", "kind": "class", "doc": "

Remesh quality settings.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.VeryLow", "kind": "variable", "doc": "

\n", "default_value": "<Quality.VeryLow: 'VeryLow'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.Low", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.Low", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Low: 'Low'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.Medium", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.Medium", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Medium: 'Medium'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.High", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.High", "kind": "variable", "doc": "

\n", "default_value": "<Quality.High: 'High'>"}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"fullname": "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Quality.VeryHigh", "kind": "variable", "doc": "

\n", "default_value": "<Quality.VeryHigh: 'VeryHigh'>"}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh", "kind": "class", "doc": "

Remesh settings.

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.__init__", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.__init__", "kind": "function", "doc": "

\n", "signature": "(\tquality: three.MF.V3.Settings.Merge.Merge.Quality = None,\tvoxelSize: float = None,\tdepth: int = None,\tscale: float = None,\tlinearInterpolation: bool = None)"}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.quality", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.quality", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.voxelSize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.depth", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.depth", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.scale", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.scale", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"fullname": "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Remesh.linearInterpolation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify", "kind": "class", "doc": "

Simplify settings.

\n"}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.__init__", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Merge.Merge.Simplify.Method = None,\tfaceCount: int = None)"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method", "kind": "class", "doc": "

Remesh method.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.QuadraticDecimation", "kind": "variable", "doc": "

\n", "default_value": "<Method.QuadraticDecimation: 'QuadraticDecimation'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.FlowTriangles", "kind": "variable", "doc": "

\n", "default_value": "<Method.FlowTriangles: 'FlowTriangles'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.FlowQuads", "kind": "variable", "doc": "

\n", "default_value": "<Method.FlowQuads: 'FlowQuads'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.Method.FlowQuadDominant", "kind": "variable", "doc": "

\n", "default_value": "<Method.FlowQuadDominant: 'FlowQuadDominant'>"}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.method", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.method", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"fullname": "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.Simplify.faceCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.selection": {"fullname": "three.MF.V3.Settings.Merge.Merge.selection", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.remesh": {"fullname": "three.MF.V3.Settings.Merge.Merge.remesh", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.remesh", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.simplify": {"fullname": "three.MF.V3.Settings.Merge.Merge.simplify", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.simplify", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Merge.Merge.texturize": {"fullname": "three.MF.V3.Settings.Merge.Merge.texturize", "modulename": "three.MF.V3.Settings.Merge", "qualname": "Merge.texturize", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup": {"fullname": "three.MF.V3.Settings.NewGroup", "modulename": "three.MF.V3.Settings.NewGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup", "kind": "class", "doc": "

Scan group settings.

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.__init__", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.__init__", "kind": "function", "doc": "

The index of the parent group in which the new group is created.\nIf unspecified the new group is added to the root of the group tree.

\n", "signature": "(\tparentIndex: int = None,\tbaseName: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None)"}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.parentIndex", "kind": "variable", "doc": "

Group base name.\nThe new group name will start with the base name followed by a unique index number chosen by the backend.

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.baseName", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.baseName", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.color", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.visible", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.visible", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.collapsed", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.collapsed", "kind": "variable", "doc": "

Group axis-angle rotation vector.\nThe direction of the vector is the rotation axis.\nThe magnitude of the vector is rotation angle in radians.

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.rotation", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.rotation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"fullname": "three.MF.V3.Settings.NewGroup.NewGroup.translation", "modulename": "three.MF.V3.Settings.NewGroup", "qualname": "NewGroup.translation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Project": {"fullname": "three.MF.V3.Settings.Project", "modulename": "three.MF.V3.Settings.Project", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Project.Project": {"fullname": "three.MF.V3.Settings.Project.Project", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project", "kind": "class", "doc": "

Project settings.

\n"}, "three.MF.V3.Settings.Project.Project.__init__": {"fullname": "three.MF.V3.Settings.Project.Project.__init__", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project.__init__", "kind": "function", "doc": "

The index identifying which project the settings applies to.\nIf undefined the current open project is used.

\n", "signature": "(index: int = None, name: str = None)"}, "three.MF.V3.Settings.Project.Project.index": {"fullname": "three.MF.V3.Settings.Project.Project.index", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Project.Project.name": {"fullname": "three.MF.V3.Settings.Project.Project.name", "modulename": "three.MF.V3.Settings.Project", "qualname": "Project.name", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector": {"fullname": "three.MF.V3.Settings.Projector", "modulename": "three.MF.V3.Settings.Projector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector": {"fullname": "three.MF.V3.Settings.Projector.Projector", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector", "kind": "class", "doc": "

Projector settings.

\n"}, "three.MF.V3.Settings.Projector.Projector.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.__init__", "kind": "function", "doc": "

\n", "signature": "(\ton: bool = None,\tbrightness: float = None,\tpattern: three.MF.V3.Settings.Projector.Projector.Pattern = None,\timage: three.MF.V3.Settings.Projector.Projector.Image = None,\tcolor: List[float] = None)"}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"fullname": "three.MF.V3.Settings.Projector.Projector.Orientation", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Orientation", "kind": "class", "doc": "

Pattern orientation.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"fullname": "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Orientation.Horizontal", "kind": "variable", "doc": "

\n", "default_value": "<Orientation.Horizontal: 'Horizontal'>"}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"fullname": "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Orientation.Vertical", "kind": "variable", "doc": "

\n", "default_value": "<Orientation.Vertical: 'Vertical'>"}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern", "kind": "class", "doc": "

Structured light pattern.

\n"}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.__init__", "kind": "function", "doc": "

\n", "signature": "(\torientation: three.MF.V3.Settings.Projector.Projector.Orientation,\tfrequency: int,\tphase: int)"}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.orientation", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.orientation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.frequency", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.frequency", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"fullname": "three.MF.V3.Settings.Projector.Projector.Pattern.phase", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Pattern.phase", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image", "kind": "class", "doc": "

Projector image settings

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.__init__", "kind": "function", "doc": "

\n", "signature": "(\tsource: three.MF.V3.Settings.Projector.Projector.Image.Source,\ttarget: MF.V3.Settings.Rectangle.Rectangle)"}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source", "kind": "class", "doc": "

Image source.

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.__init__", "kind": "function", "doc": "

\n", "signature": "(\tformat: MF.V3.Settings.Video.Video.Format,\twidth: int,\theight: int,\tstep: int,\tfixAspectRatio: bool)"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.format", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.width", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.height", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.step", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.step", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.Source.fixAspectRatio", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.source", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.source", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"fullname": "three.MF.V3.Settings.Projector.Projector.Image.target", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.Image.target", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.on": {"fullname": "three.MF.V3.Settings.Projector.Projector.on", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.on", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.brightness": {"fullname": "three.MF.V3.Settings.Projector.Projector.brightness", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.brightness", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.pattern": {"fullname": "three.MF.V3.Settings.Projector.Projector.pattern", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.pattern", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.image": {"fullname": "three.MF.V3.Settings.Projector.Projector.image", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.image", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Projector.Projector.color": {"fullname": "three.MF.V3.Settings.Projector.Projector.color", "modulename": "three.MF.V3.Settings.Projector", "qualname": "Projector.color", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Quality": {"fullname": "three.MF.V3.Settings.Quality", "modulename": "three.MF.V3.Settings.Quality", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Quality.Quality": {"fullname": "three.MF.V3.Settings.Quality.Quality", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality", "kind": "class", "doc": "

Capture quality settings.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Quality.Quality.Low": {"fullname": "three.MF.V3.Settings.Quality.Quality.Low", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality.Low", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Low: 'Low'>"}, "three.MF.V3.Settings.Quality.Quality.Medium": {"fullname": "three.MF.V3.Settings.Quality.Quality.Medium", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality.Medium", "kind": "variable", "doc": "

\n", "default_value": "<Quality.Medium: 'Medium'>"}, "three.MF.V3.Settings.Quality.Quality.High": {"fullname": "three.MF.V3.Settings.Quality.Quality.High", "modulename": "three.MF.V3.Settings.Quality", "qualname": "Quality.High", "kind": "variable", "doc": "

\n", "default_value": "<Quality.High: 'High'>"}, "three.MF.V3.Settings.Rectangle": {"fullname": "three.MF.V3.Settings.Rectangle", "modulename": "three.MF.V3.Settings.Rectangle", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle", "kind": "class", "doc": "

Rectangle settings.

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.__init__", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.__init__", "kind": "function", "doc": "

\n", "signature": "(x: int, y: int, width: int, height: int)"}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.x", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.x", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.y", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.y", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.width", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"fullname": "three.MF.V3.Settings.Rectangle.Rectangle.height", "modulename": "three.MF.V3.Settings.Rectangle", "qualname": "Rectangle.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.RemoveVertices": {"fullname": "three.MF.V3.Settings.RemoveVertices", "modulename": "three.MF.V3.Settings.RemoveVertices", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"fullname": "three.MF.V3.Settings.RemoveVertices.RemoveVertices", "modulename": "three.MF.V3.Settings.RemoveVertices", "qualname": "RemoveVertices", "kind": "class", "doc": "

Remove vertices.

\n"}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"fullname": "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__", "modulename": "three.MF.V3.Settings.RemoveVertices", "qualname": "RemoveVertices.__init__", "kind": "function", "doc": "

\n", "signature": "(scans: List[int] = None)"}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"fullname": "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans", "modulename": "three.MF.V3.Settings.RemoveVertices", "qualname": "RemoveVertices.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan": {"fullname": "three.MF.V3.Settings.Scan", "modulename": "three.MF.V3.Settings.Scan", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan": {"fullname": "three.MF.V3.Settings.Scan.Scan", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan", "kind": "class", "doc": "

Scan settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: three.MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None)"}, "three.MF.V3.Settings.Scan.Scan.Processing": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing", "kind": "class", "doc": "

Scan processing settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.__init__", "kind": "function", "doc": "

\n", "signature": "(\tprojectorSampleRate: float = None,\timageSampleRate: float = None,\tedgeDetection: three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection = None,\tphaseFilter: three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter = None,\tadaptiveSampling: three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling = None,\tpointClipping: List[three.MF.V3.Settings.Scan.Scan.Processing.PointClipping] = None,\tnormalEstimation: three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation = None,\toutlierRemoval: three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval = None)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection", "kind": "class", "doc": "

Phase edge detection settings.

\n\n

Phase edge detection produces a binary mask indicating the edges of a horizontal/vertical pair of phase images. Since flat geometries give a constant phase image gradient, we use the second derivative (Laplacian) of the phase image to detect edges rather than the gradient.

\n\n

The edge mask generated by phase edge detection is an input to both phase filtering and adaptive sampling. If neither of these are enabled, the phase edge detection settings have no effect on the output point cloud.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tthreshold: float,\tlaplacianKernelRadius: int,\tgaussianBlurRadius: int,\tgaussianBlurStdDev: float,\tmaximumWidthForProcessing: int)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.threshold", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius", "kind": "variable", "doc": "

Gaussian blur kernel radius. (Optional) To disable, set to 0.\nThe phase images can optionally blurred before taking the Laplacian to reduce noise.\nHowever as a result, the detected edges are wider.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius", "kind": "variable", "doc": "

Gaussian blur kernel standard deviation.\nThis parameter is ignored if gaussianBlurSize is zero.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev", "kind": "variable", "doc": "

The maximum image width for processing. (Optional) To disable, set to 0.\nIf this value is greater than zero, the phase images are resized to the maximum width prior\nto computing the Laplacian and the the detected edges are then upsampled to the original size.\nThis would be done to speed up processing or to detect edges on a larger scale.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter", "kind": "class", "doc": "

Phase filter settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter.__init__", "kind": "function", "doc": "

The filter kernel radius.\nA neighboring value must be within this radius to be included in the filter.\nIf the kernel radius is set to zero, the phase filtering is disabled.

\n", "signature": "(kernelRadius: int, spatialWeightStdDev: float)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter.kernelRadius", "kind": "variable", "doc": "

The standard deviation of the spatial weights.\nThe weight of a neighboring value is $\\exp(-(r/s)^2)$ where $r$ is the distance\nto the central value and $s$ is the spatial weight standard deviation.\nIf the spatial weight standard deviation is set to zero, all the spatial\nweights are uniformly set to 1.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PhaseFilter.spatialWeightStdDev", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling", "kind": "class", "doc": "

Adaptive sampling settings

\n\n

Adaptive sampling will downsample points in regions of low detail\nand keep points in regions of high detail.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type,\trate: float)"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type", "kind": "class", "doc": "

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type.NONE", "kind": "variable", "doc": "

\n", "default_value": "<Type.NONE: 'NONE'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type.REGULAR", "kind": "variable", "doc": "

\n", "default_value": "<Type.REGULAR: 'REGULAR'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.Type.RANDOM", "kind": "variable", "doc": "

\n", "default_value": "<Type.RANDOM: 'RANDOM'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.AdaptiveSampling.rate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping", "kind": "class", "doc": "

Point clipping settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.__init__", "kind": "function", "doc": "

\n", "signature": "(\ttype: three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type,\ttransform: List[float] = None)"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type", "kind": "class", "doc": "

Point clipping type.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.OutsideCube", "kind": "variable", "doc": "

\n", "default_value": "<Type.OutsideCube: 'OutsideCube'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.OutsideCylinder", "kind": "variable", "doc": "

\n", "default_value": "<Type.OutsideCylinder: 'OutsideCylinder'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.OutsideSphere", "kind": "variable", "doc": "

\n", "default_value": "<Type.OutsideSphere: 'OutsideSphere'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.InsideCube", "kind": "variable", "doc": "

\n", "default_value": "<Type.InsideCube: 'InsideCube'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.InsideCylinder", "kind": "variable", "doc": "

\n", "default_value": "<Type.InsideCylinder: 'InsideCylinder'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.Type.InsideSphere", "kind": "variable", "doc": "

\n", "default_value": "<Type.InsideSphere: 'InsideSphere'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.PointClipping.transform", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation", "kind": "class", "doc": "

Normal estimation settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmethod: three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method,\tmaximumNeighbourCount: int,\tmaximumNeighbourRadius: float,\tuseMaximumNeighbourCount: bool,\tuseMaximumNeighbourRadius: bool)"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.Method", "kind": "class", "doc": "

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.Method.NORMAL_LLS", "kind": "variable", "doc": "

\n", "default_value": "<Method.NORMAL_LLS: 'NORMAL_LLS'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D", "kind": "variable", "doc": "

\n", "default_value": "<Method.NORMAL_OPEN3D: 'NORMAL_OPEN3D'>"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.method", "kind": "variable", "doc": "

Maximum number of nearest neighbors used to compute the normal.\nThis value is only used with the NORMAL_OPEN3D method.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.maximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.maximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.useMaximumNeighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.NormalEstimation.useMaximumNeighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval", "kind": "class", "doc": "

Outlier removal settings.

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval.__init__", "kind": "function", "doc": "

\n", "signature": "(neighbourCount: int, neighbourRadius: float)"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval.neighbourCount", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.OutlierRemoval.neighbourRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.projectorSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.imageSampleRate", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.edgeDetection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.phaseFilter", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.adaptiveSampling", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.pointClipping", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.normalEstimation", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"fullname": "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.Processing.outlierRemoval", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.camera": {"fullname": "three.MF.V3.Settings.Scan.Scan.camera", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.projector": {"fullname": "three.MF.V3.Settings.Scan.Scan.projector", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.projector", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.turntable": {"fullname": "three.MF.V3.Settings.Scan.Scan.turntable", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.capture": {"fullname": "three.MF.V3.Settings.Scan.Scan.capture", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.processing": {"fullname": "three.MF.V3.Settings.Scan.Scan.processing", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.processing", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"fullname": "three.MF.V3.Settings.Scan.Scan.alignWithScanner", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.alignWithScanner", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"fullname": "three.MF.V3.Settings.Scan.Scan.centerAtOrigin", "modulename": "three.MF.V3.Settings.Scan", "qualname": "Scan.centerAtOrigin", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData": {"fullname": "three.MF.V3.Settings.ScanData", "modulename": "three.MF.V3.Settings.ScanData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData": {"fullname": "three.MF.V3.Settings.ScanData.ScanData", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData", "kind": "class", "doc": "

Scan data request.

\n"}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.__init__", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.__init__", "kind": "function", "doc": "

\n", "signature": "(\tindex: int,\tmergeStep: three.MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: List[three.MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: List[three.MF.V3.Settings.ScanData.ScanData.Metadata] = None)"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer", "kind": "class", "doc": "

Scan buffer type.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Position", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Position: 'Position'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Normal", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Normal: 'Normal'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Color", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Color: 'Color'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.UV", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.UV: 'UV'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Quality", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Quality: 'Quality'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Triangle", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Triangle: 'Triangle'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.Texture", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.Texture: 'Texture'>"}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Buffer.All", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Buffer.All", "kind": "variable", "doc": "

\n", "default_value": "<Buffer.All: 'All'>"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata", "kind": "class", "doc": "

Scan metadata type.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata.Mean", "kind": "variable", "doc": "

\n", "default_value": "<Metadata.Mean: 'Mean'>"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata.StdDev", "kind": "variable", "doc": "

\n", "default_value": "<Metadata.StdDev: 'StdDev'>"}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.Metadata.AxisAlignedBoundingBox", "kind": "variable", "doc": "

\n", "default_value": "<Metadata.AxisAlignedBoundingBox: 'AxisAlignedBoundingBox'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep", "kind": "class", "doc": "

The merge processing step.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Combined", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Combined: 'Combined'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Remeshed", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Remeshed: 'Remeshed'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Simplified", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Simplified: 'Simplified'>"}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.MergeStep.Textured", "kind": "variable", "doc": "

\n", "default_value": "<MergeStep.Textured: 'Textured'>"}, "three.MF.V3.Settings.ScanData.ScanData.index": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.index", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.mergeStep", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.mergeStep", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.buffers", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.buffers", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"fullname": "three.MF.V3.Settings.ScanData.ScanData.metadata", "modulename": "three.MF.V3.Settings.ScanData", "qualname": "ScanData.metadata", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.ScanSelection": {"fullname": "three.MF.V3.Settings.ScanSelection", "modulename": "three.MF.V3.Settings.ScanSelection", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection", "kind": "class", "doc": "

Scan selection.

\n"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.__init__", "kind": "function", "doc": "

\n", "signature": "(\tmode: three.MF.V3.Settings.ScanSelection.ScanSelection.Mode,\tgroups: List[int] = None)"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode", "kind": "class", "doc": "

Scan selection mode.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode.selected", "kind": "variable", "doc": "

\n", "default_value": "<Mode.selected: 'selected'>"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode.visible", "kind": "variable", "doc": "

\n", "default_value": "<Mode.visible: 'visible'>"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.Mode.all", "kind": "variable", "doc": "

\n", "default_value": "<Mode.all: 'all'>"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.mode", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.mode", "kind": "variable", "doc": "

The set of user-selected groups.\nThese are only used if the selection mode is 'selected'.

\n"}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"fullname": "three.MF.V3.Settings.ScanSelection.ScanSelection.groups", "modulename": "three.MF.V3.Settings.ScanSelection", "qualname": "ScanSelection.groups", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner": {"fullname": "three.MF.V3.Settings.Scanner", "modulename": "three.MF.V3.Settings.Scanner", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner": {"fullname": "three.MF.V3.Settings.Scanner.Scanner", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner", "kind": "class", "doc": "

Scanner settings.

\n"}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.__init__", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.__init__", "kind": "function", "doc": "

\n", "signature": "(\tadvanced: MF.V3.Settings.Advanced.Advanced = None,\tcamera: MF.V3.Settings.Camera.Camera = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\ti18n: MF.V3.Settings.I18n.I18n = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tstyle: MF.V3.Settings.Style.Style = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\ttutorials: MF.V3.Settings.Tutorials.Tutorials = None,\tviewer: MF.V3.Settings.Viewer.Viewer = None,\tsoftware: MF.V3.Settings.Software.Software = None)"}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.advanced", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.advanced", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.camera", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.camera", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.capture", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.capture", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.i18n", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.i18n", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.projector", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.projector", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.style": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.style", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.style", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.turntable", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.turntable", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.tutorials", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.tutorials", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.viewer", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.viewer", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Scanner.Scanner.software": {"fullname": "three.MF.V3.Settings.Scanner.Scanner.software", "modulename": "three.MF.V3.Settings.Scanner", "qualname": "Scanner.software", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth": {"fullname": "three.MF.V3.Settings.Smooth", "modulename": "three.MF.V3.Settings.Smooth", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth": {"fullname": "three.MF.V3.Settings.Smooth.Smooth", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth", "kind": "class", "doc": "

Mesh smoothing settings.

\n"}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.__init__", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.__init__", "kind": "function", "doc": "

\n", "signature": "(\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttaubin: three.MF.V3.Settings.Smooth.Smooth.Taubin = None)"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin", "kind": "class", "doc": "

Taubin smoothing settings.

\n"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.__init__", "kind": "function", "doc": "

\n", "signature": "(iterations: int = None, lambda_: float = None, mu: float = None)"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.iterations", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.lambda_", "kind": "variable", "doc": "

Second laplacian smoothing filter parameter.\nMust be negative and have magnitude greater or equal to lambda .

\n"}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.Taubin.mu", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.selection", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.selection", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"fullname": "three.MF.V3.Settings.Smooth.Smooth.taubin", "modulename": "three.MF.V3.Settings.Smooth", "qualname": "Smooth.taubin", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Software": {"fullname": "three.MF.V3.Settings.Software", "modulename": "three.MF.V3.Settings.Software", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Software.Software": {"fullname": "three.MF.V3.Settings.Software.Software", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software", "kind": "class", "doc": "

Software settings.

\n"}, "three.MF.V3.Settings.Software.Software.__init__": {"fullname": "three.MF.V3.Settings.Software.Software.__init__", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software.__init__", "kind": "function", "doc": "

\n", "signature": "(updateMajor: bool = None, updateNightly: bool = None)"}, "three.MF.V3.Settings.Software.Software.updateMajor": {"fullname": "three.MF.V3.Settings.Software.Software.updateMajor", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software.updateMajor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Software.Software.updateNightly": {"fullname": "three.MF.V3.Settings.Software.Software.updateNightly", "modulename": "three.MF.V3.Settings.Software", "qualname": "Software.updateNightly", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Style": {"fullname": "three.MF.V3.Settings.Style", "modulename": "three.MF.V3.Settings.Style", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Style.Style": {"fullname": "three.MF.V3.Settings.Style.Style", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style", "kind": "class", "doc": "

Style settings.

\n"}, "three.MF.V3.Settings.Style.Style.__init__": {"fullname": "three.MF.V3.Settings.Style.Style.__init__", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.__init__", "kind": "function", "doc": "

\n", "signature": "(theme: three.MF.V3.Settings.Style.Style.Theme = None)"}, "three.MF.V3.Settings.Style.Style.Theme": {"fullname": "three.MF.V3.Settings.Style.Style.Theme", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.Theme", "kind": "class", "doc": "

Themes.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"fullname": "three.MF.V3.Settings.Style.Style.Theme.Light", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.Theme.Light", "kind": "variable", "doc": "

\n", "default_value": "<Theme.Light: 'Light'>"}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"fullname": "three.MF.V3.Settings.Style.Style.Theme.Dark", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.Theme.Dark", "kind": "variable", "doc": "

\n", "default_value": "<Theme.Dark: 'Dark'>"}, "three.MF.V3.Settings.Style.Style.theme": {"fullname": "three.MF.V3.Settings.Style.Style.theme", "modulename": "three.MF.V3.Settings.Style", "qualname": "Style.theme", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable": {"fullname": "three.MF.V3.Settings.Turntable", "modulename": "three.MF.V3.Settings.Turntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable": {"fullname": "three.MF.V3.Settings.Turntable.Turntable", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable", "kind": "class", "doc": "

Turntable settings.

\n"}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.__init__", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.__init__", "kind": "function", "doc": "

\n", "signature": "(\tscans: int,\tsweep: int,\tuse: bool = None,\tpointClippingRadius: float = None,\tpointClippingMinHeight: float = None,\tpointClippingMaxHeight: float = None,\toffsetAngle: float = None)"}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.scans", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.scans", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.sweep", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.sweep", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.use": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.use", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.use", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.pointClippingRadius", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.pointClippingMinHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.pointClippingMaxHeight", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"fullname": "three.MF.V3.Settings.Turntable.Turntable.offsetAngle", "modulename": "three.MF.V3.Settings.Turntable", "qualname": "Turntable.offsetAngle", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials": {"fullname": "three.MF.V3.Settings.Tutorials", "modulename": "three.MF.V3.Settings.Tutorials", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials", "kind": "class", "doc": "

Tutorials settings.

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.__init__", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.__init__", "kind": "function", "doc": "

\n", "signature": "(\tshow: bool = None,\tviewed: three.MF.V3.Settings.Tutorials.Tutorials.Viewed = None)"}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.Viewed", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.Viewed", "kind": "class", "doc": "

Viewed tutorials.

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.Viewed.__init__", "kind": "function", "doc": "

\n", "signature": "(pages: List[str] = None)"}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.Viewed.pages", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.show", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.show", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"fullname": "three.MF.V3.Settings.Tutorials.Tutorials.viewed", "modulename": "three.MF.V3.Settings.Tutorials", "qualname": "Tutorials.viewed", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video": {"fullname": "three.MF.V3.Settings.Video", "modulename": "three.MF.V3.Settings.Video", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video": {"fullname": "three.MF.V3.Settings.Video.Video", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video", "kind": "class", "doc": "

Video settings.

\n"}, "three.MF.V3.Settings.Video.Video.__init__": {"fullname": "three.MF.V3.Settings.Video.Video.__init__", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.__init__", "kind": "function", "doc": "

\n", "signature": "(\tcodec: three.MF.V3.Settings.Video.Video.Codec,\tformat: three.MF.V3.Settings.Video.Video.Format,\twidth: int,\theight: int)"}, "three.MF.V3.Settings.Video.Video.Codec": {"fullname": "three.MF.V3.Settings.Video.Video.Codec", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec", "kind": "class", "doc": "

Video codecs.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.NoCodec", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.NoCodec", "kind": "variable", "doc": "

\n", "default_value": "<Codec.NoCodec: 'NoCodec'>"}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.RAW", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.RAW", "kind": "variable", "doc": "

\n", "default_value": "<Codec.RAW: 'RAW'>"}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.JPEG", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.JPEG", "kind": "variable", "doc": "

\n", "default_value": "<Codec.JPEG: 'JPEG'>"}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"fullname": "three.MF.V3.Settings.Video.Video.Codec.H264", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Codec.H264", "kind": "variable", "doc": "

\n", "default_value": "<Codec.H264: 'H264'>"}, "three.MF.V3.Settings.Video.Video.Format": {"fullname": "three.MF.V3.Settings.Video.Video.Format", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format", "kind": "class", "doc": "

Pixel formats.

\n", "bases": "enum.Enum"}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"fullname": "three.MF.V3.Settings.Video.Video.Format.NoFormat", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.NoFormat", "kind": "variable", "doc": "

\n", "default_value": "<Format.NoFormat: 'NoFormat'>"}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"fullname": "three.MF.V3.Settings.Video.Video.Format.RGB565", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.RGB565", "kind": "variable", "doc": "

\n", "default_value": "<Format.RGB565: 'RGB565'>"}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"fullname": "three.MF.V3.Settings.Video.Video.Format.RGB888", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.RGB888", "kind": "variable", "doc": "

\n", "default_value": "<Format.RGB888: 'RGB888'>"}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"fullname": "three.MF.V3.Settings.Video.Video.Format.BGR888", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.BGR888", "kind": "variable", "doc": "

\n", "default_value": "<Format.BGR888: 'BGR888'>"}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"fullname": "three.MF.V3.Settings.Video.Video.Format.YUV420", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.Format.YUV420", "kind": "variable", "doc": "

\n", "default_value": "<Format.YUV420: 'YUV420'>"}, "three.MF.V3.Settings.Video.Video.codec": {"fullname": "three.MF.V3.Settings.Video.Video.codec", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.codec", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video.format": {"fullname": "three.MF.V3.Settings.Video.Video.format", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.format", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video.width": {"fullname": "three.MF.V3.Settings.Video.Video.width", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.width", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Video.Video.height": {"fullname": "three.MF.V3.Settings.Video.Video.height", "modulename": "three.MF.V3.Settings.Video", "qualname": "Video.height", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Viewer": {"fullname": "three.MF.V3.Settings.Viewer", "modulename": "three.MF.V3.Settings.Viewer", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Viewer.Viewer": {"fullname": "three.MF.V3.Settings.Viewer.Viewer", "modulename": "three.MF.V3.Settings.Viewer", "qualname": "Viewer", "kind": "class", "doc": "

3D Viewer settings.

\n"}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"fullname": "three.MF.V3.Settings.Viewer.Viewer.__init__", "modulename": "three.MF.V3.Settings.Viewer", "qualname": "Viewer.__init__", "kind": "function", "doc": "

\n", "signature": "(textureOpacity: float = None)"}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"fullname": "three.MF.V3.Settings.Viewer.Viewer.textureOpacity", "modulename": "three.MF.V3.Settings.Viewer", "qualname": "Viewer.textureOpacity", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Wifi": {"fullname": "three.MF.V3.Settings.Wifi", "modulename": "three.MF.V3.Settings.Wifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Settings.Wifi.Wifi": {"fullname": "three.MF.V3.Settings.Wifi.Wifi", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi", "kind": "class", "doc": "

Wifi connection settings.

\n"}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"fullname": "three.MF.V3.Settings.Wifi.Wifi.__init__", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi.__init__", "kind": "function", "doc": "

\n", "signature": "(ssid: str, password: str)"}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"fullname": "three.MF.V3.Settings.Wifi.Wifi.ssid", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi.ssid", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Settings.Wifi.Wifi.password": {"fullname": "three.MF.V3.Settings.Wifi.Wifi.password", "modulename": "three.MF.V3.Settings.Wifi", "qualname": "Wifi.password", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task": {"fullname": "three.MF.V3.Task", "modulename": "three.MF.V3.Task", "kind": "module", "doc": "

\n"}, "three.MF.V3.Task.TaskState": {"fullname": "three.MF.V3.Task.TaskState", "modulename": "three.MF.V3.Task", "qualname": "TaskState", "kind": "class", "doc": "

\n", "bases": "enum.Enum"}, "three.MF.V3.Task.TaskState.Empty": {"fullname": "three.MF.V3.Task.TaskState.Empty", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Empty", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Empty: 'None'>"}, "three.MF.V3.Task.TaskState.Sent": {"fullname": "three.MF.V3.Task.TaskState.Sent", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Sent", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Sent: 'Sent'>"}, "three.MF.V3.Task.TaskState.Received": {"fullname": "three.MF.V3.Task.TaskState.Received", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Received", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Received: 'Received'>"}, "three.MF.V3.Task.TaskState.Started": {"fullname": "three.MF.V3.Task.TaskState.Started", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Started", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Started: 'Started'>"}, "three.MF.V3.Task.TaskState.Completed": {"fullname": "three.MF.V3.Task.TaskState.Completed", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Completed", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Completed: 'Completed'>"}, "three.MF.V3.Task.TaskState.Cancelled": {"fullname": "three.MF.V3.Task.TaskState.Cancelled", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Cancelled", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Cancelled: 'Cancelled'>"}, "three.MF.V3.Task.TaskState.Failed": {"fullname": "three.MF.V3.Task.TaskState.Failed", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Failed", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Failed: 'Failed'>"}, "three.MF.V3.Task.TaskState.Dropped": {"fullname": "three.MF.V3.Task.TaskState.Dropped", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Dropped", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Dropped: 'Dropped'>"}, "three.MF.V3.Task.TaskState.Disconnected": {"fullname": "three.MF.V3.Task.TaskState.Disconnected", "modulename": "three.MF.V3.Task", "qualname": "TaskState.Disconnected", "kind": "variable", "doc": "

\n", "default_value": "<TaskState.Disconnected: 'Disconnected'>"}, "three.MF.V3.Task.Task": {"fullname": "three.MF.V3.Task.Task", "modulename": "three.MF.V3.Task", "qualname": "Task", "kind": "class", "doc": "

*\nGeneric task message for the Three Scanner.

\n\n

The task message is the generic message used for requesting a task of the Three Scanner and receiving updates and results.

\n\n

Example: Apply camera settings with the \"SetCameras\" task.

\n\n
\n

Example request:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras"\n"Input":{\n"analogGain":256,\n"digitalGain":128,\n"exposure":18000\n},\n}\n}\n
\n
\n\n
\n

Example response:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras"\n"Input":{\n"analogGain":256,\n"digitalGain":512,\n"exposure":18000\n},\n"Output":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":512},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Task.Task.__init__": {"fullname": "three.MF.V3.Task.Task.__init__", "modulename": "three.MF.V3.Task", "qualname": "Task.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None,\tOutput: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None,\tState: three.MF.V3.Task.TaskState = None,\tError: str = None,\tProgress: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None)"}, "three.MF.V3.Task.Task.Index": {"fullname": "three.MF.V3.Task.Task.Index", "modulename": "three.MF.V3.Task", "qualname": "Task.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Type": {"fullname": "three.MF.V3.Task.Task.Type", "modulename": "three.MF.V3.Task", "qualname": "Task.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Input": {"fullname": "three.MF.V3.Task.Task.Input", "modulename": "three.MF.V3.Task", "qualname": "Task.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Output": {"fullname": "three.MF.V3.Task.Task.Output", "modulename": "three.MF.V3.Task", "qualname": "Task.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.State": {"fullname": "three.MF.V3.Task.Task.State", "modulename": "three.MF.V3.Task", "qualname": "Task.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Error": {"fullname": "three.MF.V3.Task.Task.Error", "modulename": "three.MF.V3.Task", "qualname": "Task.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Task.Task.Progress": {"fullname": "three.MF.V3.Task.Task.Progress", "modulename": "three.MF.V3.Task", "qualname": "Task.Progress", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks": {"fullname": "three.MF.V3.Tasks", "modulename": "three.MF.V3.Tasks", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject": {"fullname": "three.MF.V3.Tasks.AddMergeToProject", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject", "kind": "class", "doc": "

*\nAdd a merged scan to the current project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AddMergeToProject"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AddMergeToProject",\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Scan-1",\n"scan": 1,\n"color":[0.5, 0.8, 0.3]\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request", "kind": "class", "doc": "

Client request for the AddMergeToProject task.

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response", "kind": "class", "doc": "

Server response for the AddMergeToProject task.

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"fullname": "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error", "modulename": "three.MF.V3.Tasks.AddMergeToProject", "qualname": "AddMergeToProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align": {"fullname": "three.MF.V3.Tasks.Align", "modulename": "three.MF.V3.Tasks.Align", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align": {"fullname": "three.MF.V3.Tasks.Align.Align", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align", "kind": "class", "doc": "

*\nAlign two scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Align",\n"Input":{\n"source":1,\n"target":2,\n"rough":{"method": "FastGlobal"},\n"fine":{"method": "ICP"}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Align",\n"Input":{\n"source":1,\n"target":2,\n"rough":{"method": "FastGlobal"},\n"fine":{"method": "ICP"}\n},\n"Output":{\n"rotation":[0.2, 0.4, 0.6],\n"translation":[11, -10, 24]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Align.Align.Request": {"fullname": "three.MF.V3.Tasks.Align.Align.Request", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request", "kind": "class", "doc": "

Client request for the Align task.

\n"}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.__init__", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Align.Align)"}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.Index", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.Type", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"fullname": "three.MF.V3.Tasks.Align.Align.Request.Input", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response": {"fullname": "three.MF.V3.Tasks.Align.Align.Response", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response", "kind": "class", "doc": "

Server response for the Align task.

\n"}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.__init__", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Align.Align,\tOutput: MF.V3.Descriptors.Transform.Transform,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Index", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Type", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Input", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Output", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.State": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.State", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"fullname": "three.MF.V3.Tasks.Align.Align.Response.Error", "modulename": "three.MF.V3.Tasks.Align", "qualname": "Align.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus": {"fullname": "three.MF.V3.Tasks.AutoFocus", "modulename": "three.MF.V3.Tasks.AutoFocus", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus", "kind": "class", "doc": "

*\nAuto focus one or both cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AutoFocus",\n"Input":{\n"cameras":[{\n"index":1,\n"box":{"x":196,"y":130,"width":64,"height":64}\n}],\n"applyAll":false\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"AutoFocus",\n"Input":{\n"cameras":[{\n"index":1,\n"box":{"x":196,"y":130,"width":64,"height":64}\n}],\n"applyAll":false\n}\n"Output":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":true},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n"focus":{\n"box":{\n"default":[\n{"height":64,"width":64,"x":224,"y":158},\n{"height":64,"width":64,"x":224,"y":158}\n],\n"value":[\n{"height":64,"width":64,"x":271,"y":134},\n{"height":64,"width":64,"x":196,"y":130}\n]\n},\n"value":{"default":[350,350],"max":1024,"min":0,"value":[396,392]}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request", "kind": "class", "doc": "

Client request for the AutoFocus task.

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.AutoFocus.AutoFocus = None)"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response", "kind": "class", "doc": "

Server response for the AutoFocus task.

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.AutoFocus.AutoFocus = None,\tOutput: MF.V3.Descriptors.Settings.Camera.Camera = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"fullname": "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error", "modulename": "three.MF.V3.Tasks.AutoFocus", "qualname": "AutoFocus.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox": {"fullname": "three.MF.V3.Tasks.BoundingBox", "modulename": "three.MF.V3.Tasks.BoundingBox", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox", "kind": "class", "doc": "

*\nGet the bounding box of a set of scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"BoundingBox",\n"Input":{\n"selection":{"mode":"visible"},\n"axisAligned":false\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"BoundingBox",\n"Input":{\n"selection":{"mode":"visible"},\n"axisAligned":false\n},\n"Output":{\n"center":[11.9,-10.1,94.5],\n"rotation":[\n0.7, -0.7, 0.0,\n0.7,  0.7, 0.0,\n0.0,  0.0, 1.0],\n"size":[442.2,253.1,447.1],\n"transform":[\n221, 0.0, 0.0,  11.9,\n0.0, 126, 0.0, -10.1,\n0.0, 0.0, 223,  94.5,\n0.0, 0.0, 0.0,   1.0]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request", "kind": "class", "doc": "

Client request for the BoundingBox task.

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.BoundingBox.BoundingBox)"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response", "kind": "class", "doc": "

Server response for the BoundingBox task.

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.BoundingBox.BoundingBox,\tOutput: MF.V3.Descriptors.BoundingBox.BoundingBox,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"fullname": "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error", "modulename": "three.MF.V3.Tasks.BoundingBox", "qualname": "BoundingBox.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras": {"fullname": "three.MF.V3.Tasks.CalibrateCameras", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras", "kind": "class", "doc": "

*\nCalibrate the cameras.

\n\n

This task starts the camera calibration capture sequence where the user is guided to place the calibration card with a card outline drawn on the video feed. Once each calibration card pose is captured, the cameras are calibrated and the calibration results are returned as a string. If the cameras cannot be calibrated the task finishes in a Failed state.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateCameras"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateCameras",\n"Output":"Camera calibration results: ...",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request", "kind": "class", "doc": "

Client request for the CalibrateCameras task.

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response", "kind": "class", "doc": "

Server response for the CalibrateCameras task.

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: str = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"fullname": "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error", "modulename": "three.MF.V3.Tasks.CalibrateCameras", "qualname": "CalibrateCameras.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable", "kind": "class", "doc": "

*\nCalibrate the turntable.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateTurntable"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrateTurntable",\n"Output":{\n"date":[2024,4,27,16,57,35],\n"quality":"Excellent",\n"focus":[300,320]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request", "kind": "class", "doc": "

Client request for the CalibrateTurntable task.

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response", "kind": "class", "doc": "

Server response for the CalibrateTurntable task.

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.Turntable = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"fullname": "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error", "modulename": "three.MF.V3.Tasks.CalibrateTurntable", "qualname": "CalibrateTurntable.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets", "kind": "class", "doc": "

*\nGet the camera calibration targets.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrationCaptureTargets"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CalibrationCaptureTargets",\n"Output":{[\n{\n"camera":0,\n"quads":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]\n},\n{\n"camera":1,\n"quads":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]\n},\n]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request", "kind": "class", "doc": "

Client request for the CalibrationCaptureTargets task.

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response", "kind": "class", "doc": "

Server response for the CalibrationCaptureTargets task.

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.CaptureTarget = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"fullname": "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error", "modulename": "three.MF.V3.Tasks.CalibrationCaptureTargets", "qualname": "CalibrationCaptureTargets.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration": {"fullname": "three.MF.V3.Tasks.CameraCalibration", "modulename": "three.MF.V3.Tasks.CameraCalibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration", "kind": "class", "doc": "

*\nGet the camera calibration descriptor.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CameraCalibration"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CameraCalibration",\n"Output":{\n"date":[2024,4,27,16,57,35],\n"quality":"Excellent"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request", "kind": "class", "doc": "

Client request for the CameraCalibration task.

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response", "kind": "class", "doc": "

Server response for the CameraCalibration task.

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.Camera = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"fullname": "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error", "modulename": "three.MF.V3.Tasks.CameraCalibration", "qualname": "CameraCalibration.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage": {"fullname": "three.MF.V3.Tasks.CaptureImage", "modulename": "three.MF.V3.Tasks.CaptureImage", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage", "kind": "class", "doc": "

*\nCapture an image from one or both cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CaptureImage"\n"Input":{\n"selection":{0,1},\n"grayscale":false,\n"codec":jpg\n}\n}\n}\n
\n
\n\n
\n

Buffer messages from server.

\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"{"camera":0,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104},\n"Index":0,\n"Size":856664,\n"Task":{\n"Index":1,\n"Type":"CaptureImage",\n"Input":{"selection":{0,1}, "grayscale":false, "codec":jpg}\n}\n}\n}\n
\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"{"camera":1,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104},\n"Index":1,\n"Size":847726,\n"Task":{\n"Index":1,\n"Type":"CaptureImage",\n"Input":{"selection":{0,1}, "grayscale":false, "codec":jpg}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CaptureImage"\n"Input":{\n"selection":{0,1},\n"grayscale":false,\n"codec":jpg\n}\n"Output":[\n{"camera":0,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104},\n{"camera":1,"codec":"jpg","grayscale":false,"height":1560,"step":6312,"width":2104}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request", "kind": "class", "doc": "

Client request for the CaptureImage task.

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.CaptureImage.CaptureImage)"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response", "kind": "class", "doc": "

Server response for the CaptureImage task.

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.CaptureImage.CaptureImage,\tOutput: List[MF.V3.Descriptors.CaptureImage.CaptureImage] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer", "kind": "class", "doc": "

Server buffer message for the CaptureImage task.

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.CaptureImage.CaptureImage)"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.CaptureImage", "qualname": "CaptureImage.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings": {"fullname": "three.MF.V3.Tasks.ClearSettings", "modulename": "three.MF.V3.Tasks.ClearSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings", "kind": "class", "doc": "

*\nClear scanner settings and restore the default factory settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ClearSettings"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ClearSettings",\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request", "kind": "class", "doc": "

Client request for the ClearSettings task.

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response", "kind": "class", "doc": "

Server response for the ClearSettings task.

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error", "modulename": "three.MF.V3.Tasks.ClearSettings", "qualname": "ClearSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject": {"fullname": "three.MF.V3.Tasks.CloseProject", "modulename": "three.MF.V3.Tasks.CloseProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject", "kind": "class", "doc": "

*\nClose the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CloseProject",\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CloseProject",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request", "kind": "class", "doc": "

Client request for the CloseProject task.

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response", "kind": "class", "doc": "

Server response for the CloseProject task.

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"fullname": "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error", "modulename": "three.MF.V3.Tasks.CloseProject", "qualname": "CloseProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner": {"fullname": "three.MF.V3.Tasks.ConnectScanner", "modulename": "three.MF.V3.Tasks.ConnectScanner", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner", "kind": "class", "doc": "

*\nConnect the desktop engine to a scanner (desktop engine only).

\n\n

The engine negotiates capabilities with GetProtocolInfo, enables client\nprocessing, and downloads the scanner's calibration into its local\nworkspace. A ScannerStatus message is pushed to every client when the\nconnection state changes.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"ConnectScanner", "Input":"matterandform.local" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"ConnectScanner", "Output":true, "State":"Completed" }\n}\n
\n
\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Request", "kind": "class", "doc": "

Client request for the ConnectScanner task.

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: str)"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response", "kind": "class", "doc": "

Server response for the ConnectScanner task.

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"fullname": "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error", "modulename": "three.MF.V3.Tasks.ConnectScanner", "qualname": "ConnectScanner.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi": {"fullname": "three.MF.V3.Tasks.ConnectWifi", "modulename": "three.MF.V3.Tasks.ConnectWifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi", "kind": "class", "doc": "

*\nConnect to a wifi network.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ConnectWifi",\n"Input":{\n"ssid":"Network1"\n"password":"password"\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ConnectWifi",\n"Input":{\n{\n"ssid":"Network1"\n"password":"password"\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request", "kind": "class", "doc": "

Client request for the ConnectWifi task.

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Wifi.Wifi)"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response", "kind": "class", "doc": "

Server response for the ConnectWifi task.

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Wifi.Wifi,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"fullname": "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error", "modulename": "three.MF.V3.Tasks.ConnectWifi", "qualname": "ConnectWifi.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups": {"fullname": "three.MF.V3.Tasks.CopyGroups", "modulename": "three.MF.V3.Tasks.CopyGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups", "kind": "class", "doc": "

*\nCopy a set of scan groups.

\n\n

Say we have a scan group three with three groups:

\n\n
\n
{\n"groups":[\n{"index":1, "name":"Group 1"},\n{"index":2, "name":"Group 2"},\n{"index":3, "name":"Group 3"}\n],\n}\n
\n
\n\n

and we want to copy groups 1 and 3.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CopyGroups",\n"Input":{\n"sourceIndexes": [1,3],\n"nameSuffix": "-copy"\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"CopyGroups",\n"Input":{"sourceIndexes":[1,3,5]},\n"Output":{\n"groups":[\n{"index":1, "name":"Group 1"},\n{"index":4, "name":"Group 1-copy"}\n{"index":2, "name":"Group 2"},\n{"index":3, "name":"Group 3"},\n{"index":5, "name":"Group 3-copy"},\n],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request", "kind": "class", "doc": "

Client request for the CopyGroups task.

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.CopyGroups.CopyGroups)"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response", "kind": "class", "doc": "

Server response for the CopyGroups task.

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.CopyGroups.CopyGroups,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"fullname": "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error", "modulename": "three.MF.V3.Tasks.CopyGroups", "qualname": "CopyGroups.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap": {"fullname": "three.MF.V3.Tasks.DepthMap", "modulename": "three.MF.V3.Tasks.DepthMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap", "kind": "class", "doc": "

*\nCapture a new scan.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DepthMap"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n}\n}\n
\n
\n\n
\n

Depth map buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":13128960,\n"Descriptor":{\n"cols":2104,\n"rows":1560,\n"step":8416,\n"type":5\n},\n"Task":{\n"Index":1,\n"Type":"DepthMap",\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n}\n}\n}\n}\n
\n
\n\n
\n

Depth map binary data transfer from server [13128960 bytes].

\n
\n\n
\n

Texture buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":1,\n"Size":9846720,\n"Descriptor":{\n"cols":2104,\n"rows":1560,\n"step":6312,\n"type":16\n},\n"Task":{\n"Index":1,\n"Type":"DepthMap",\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n}\n}\n}\n}\n
\n
\n\n
\n

Texture binary data transfer from server [9846720 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DepthMap"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n"Output":[2500,0,1052,0,2500,780,0,0,1],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request", "kind": "class", "doc": "

Client request for the DepthMap task.

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Scan.Scan = None)"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response", "kind": "class", "doc": "

Server response for the DepthMap task.

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Scan.Scan = None,\tOutput: List[float] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer", "kind": "class", "doc": "

Server buffer message for the DepthMap task.

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.Image.Image)"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.DepthMap", "qualname": "DepthMap.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard", "kind": "class", "doc": "

*\nTurns on the detection the calibration card on one or both cameras.\nUse the Video Frame Descriptor to get the results of the detection.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DetectCalibrationCard",\n"Input":3\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Input":3,\n"Type":"DetectCalibrationCard",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request", "kind": "class", "doc": "

Client request for the DetectCalibrationCard task.

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.Type", "kind": "variable", "doc": "

Flag specifying on which camera(s) to start the detection the calibration card.\n[0: neither camera (disable), 1: left camera, 2: right camera, 3: both cameras]

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response", "kind": "class", "doc": "

Server response for the DetectCalibrationCard task.

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Type", "kind": "variable", "doc": "

Flag sent in the request specifying on which camera(s) to start the detection the calibration card.\n[0: neither camera (disable), 1: left camera, 2: right camera, 3: both cameras]

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"fullname": "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error", "modulename": "three.MF.V3.Tasks.DetectCalibrationCard", "qualname": "DetectCalibrationCard.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner": {"fullname": "three.MF.V3.Tasks.DisconnectScanner", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner", "kind": "class", "doc": "

*\nDisconnect the desktop engine from its scanner (desktop engine only).

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"DisconnectScanner" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"DisconnectScanner", "Output":true, "State":"Completed" }\n}\n
\n
\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Request", "kind": "class", "doc": "

Client request for the DisconnectScanner task.

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response", "kind": "class", "doc": "

Server response for the DisconnectScanner task.

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"fullname": "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error", "modulename": "three.MF.V3.Tasks.DisconnectScanner", "qualname": "DisconnectScanner.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners": {"fullname": "three.MF.V3.Tasks.DiscoverScanners", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners", "kind": "class", "doc": "

*\nDiscover scanners on the local network (desktop engine only).

\n\n

The engine browses mDNS for advertised scanners and additionally resolves\nthe default scanner host name, so scanners running older firmware that does\nnot advertise a service record are still found. The search runs for a few\nseconds before the result is returned; run the task again to refresh.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"DiscoverScanners" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DiscoverScanners",\n"Output":{ "scanners":[{ "name":"THREE", "host":"matterandform.local", "ip":"192.168.50.115", "port":8081 }] },\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Request", "kind": "class", "doc": "

Client request for the DiscoverScanners task.

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response", "kind": "class", "doc": "

Server response for the DiscoverScanners task.

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.ScannerList.ScannerList = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"fullname": "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error", "modulename": "three.MF.V3.Tasks.DiscoverScanners", "qualname": "DiscoverScanners.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject": {"fullname": "three.MF.V3.Tasks.DownloadProject", "modulename": "three.MF.V3.Tasks.DownloadProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject", "kind": "class", "doc": "

*\nDownload a project from the scanner.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n
\n
\n\n
\n

Buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Descriptor":"Project-5.zip",\n"Index":0,\n"Size":15682096,\n"Task":{\n"Index":1,\n"Type":"DownloadProject",\n"Input":5\n}\n}\n}\n
\n
\n\n
\n

Binary data transfer from server: The project zip file [15682096 bytes].\n Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"DownloadProject"\n"Input":5,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request", "kind": "class", "doc": "

Client request for the DownloadProject task.

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response", "kind": "class", "doc": "

Server response for the DownloadProject task.

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer", "kind": "class", "doc": "

Server buffer message for the DownloadProject task.

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task, Descriptor: str)"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.DownloadProject", "qualname": "DownloadProject.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject", "kind": "class", "doc": "

*\nDownload a project archive from the connected scanner (desktop engine\nonly).

\n\n

The archive is sent to the client as a task buffer whose descriptor is the\nsuggested file name. The counterpart of DownloadProject, which archives a\nlocal project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"DownloadScannerProject", "Input":2 }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"DownloadScannerProject", "State":"Completed" }\n}\n
\n
\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Request", "kind": "class", "doc": "

Client request for the DownloadScannerProject task.

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Response", "kind": "class", "doc": "

Server response for the DownloadScannerProject task.

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"fullname": "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error", "modulename": "three.MF.V3.Tasks.DownloadScannerProject", "qualname": "DownloadScannerProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export": {"fullname": "three.MF.V3.Tasks.Export", "modulename": "three.MF.V3.Tasks.Export", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export": {"fullname": "three.MF.V3.Tasks.Export.Export", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export", "kind": "class", "doc": "

*\nExport a group of scans.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Export",\n"Input":{\n"selection":{"mode":"visible"},\n"format":"obj",\n"texture":true,\n"merge":false\n}\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":8413737,\n"Task":{\n"Index":1,\n"Type":"Export",\n"Input":{\n"selection":{"mode":"visible"},\n"format":"obj",\n"texture":true,\n"merge":false\n}\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [8413737 bytes].

\n
\n\n
\n

Response from server:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Export"\n"Input":{\n"selection":{"mode":"visible"},\n"format":"obj",\n"texture":true,\n"merge":false\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Export.Export.Request": {"fullname": "three.MF.V3.Tasks.Export.Export.Request", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request", "kind": "class", "doc": "

Client request for the Export task.

\n"}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.__init__", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Export.Export)"}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.Index", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.Type", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"fullname": "three.MF.V3.Tasks.Export.Export.Request.Input", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response": {"fullname": "three.MF.V3.Tasks.Export.Export.Response", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response", "kind": "class", "doc": "

Server response for the Export task.

\n"}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.__init__", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Export.Export,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Index", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Type", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Input", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.State": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.State", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"fullname": "three.MF.V3.Tasks.Export.Export.Response.Error", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer", "kind": "class", "doc": "

Server buffer message for the Export task.

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.__init__", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.Index", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.Size", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"fullname": "three.MF.V3.Tasks.Export.Export.Buffer.Task", "modulename": "three.MF.V3.Tasks.Export", "qualname": "Export.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs", "kind": "class", "doc": "

*\nExport facotry calibration logs.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportFactoryCalibrationLogs"\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":41337,\n"Task":{\n"Index":1,\n"Type":"ExportFactoryCalibrationLogs"\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [41337 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportFactoryCalibrationLogs"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request", "kind": "class", "doc": "

Client request for the ExportFactoryCalibrationLogs task.

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response", "kind": "class", "doc": "

Server response for the ExportFactoryCalibrationLogs task.

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportFactoryCalibrationLogs task.

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportFactoryCalibrationLogs", "qualname": "ExportFactoryCalibrationLogs.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap": {"fullname": "three.MF.V3.Tasks.ExportHeatMap", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap", "kind": "class", "doc": "

*\nExport a mesh with vertex colors generated by the 'HeatMap' task.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportHeatMap",\n"Input":{"color":{"min":0.0,"max":1.0}}\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":8413737,\n"Task":{\n"Index":1,\n"Type":"ExportHeatMap",\n"Input":{"color":{"min":0.0,"max":1.0}}\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [8413737 bytes].

\n
\n\n
\n

Response from server:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportHeatMap",\n"Input":{"color":{"min":0.0,"max":1.0}},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request", "kind": "class", "doc": "

Client request for the ExportHeatMap task.

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Export.Export)"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response", "kind": "class", "doc": "

Server response for the ExportHeatMap task.

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Export.Export,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportHeatMap task.

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportHeatMap", "qualname": "ExportHeatMap.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs": {"fullname": "three.MF.V3.Tasks.ExportLogs", "modulename": "three.MF.V3.Tasks.ExportLogs", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs", "kind": "class", "doc": "

*\nExport scanner logs.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportLogs",\n"Input":true\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":41337,\n"Task":{\n"Index":1,\n"Type":"ExportLogs",\n"Input":true\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [41337 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportLogs"\n"Input":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request", "kind": "class", "doc": "

Client request for the ExportLogs task.

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: bool = None)"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response", "kind": "class", "doc": "

Server response for the ExportLogs task.

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportLogs task.

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportLogs", "qualname": "ExportLogs.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge": {"fullname": "three.MF.V3.Tasks.ExportMerge", "modulename": "three.MF.V3.Tasks.ExportMerge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge", "kind": "class", "doc": "

*\nExport a merged scan.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportMerge",\n"Input":{\n"format":"obj",\n"texture":true\n}\n}\n}\n
\n
\n\n
\n

Export file buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":8413737,\n"Task":{\n"Index":1,\n"Type":"ExportMerge",\n"Input":{\n"format":"obj",\n"texture":true\n}\n}\n}\n}\n
\n
\n\n
\n

Export file binary data transfer from server [8413737 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ExportMerge"\n"Input":{\n"format":"obj",\n"texture":true\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request", "kind": "class", "doc": "

Client request for the ExportMerge task.

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Export.Export)"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response", "kind": "class", "doc": "

Server response for the ExportMerge task.

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Export.Export,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer", "kind": "class", "doc": "

Server buffer message for the ExportMerge task.

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task", "modulename": "three.MF.V3.Tasks.ExportMerge", "qualname": "ExportMerge.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset": {"fullname": "three.MF.V3.Tasks.FactoryReset", "modulename": "three.MF.V3.Tasks.FactoryReset", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset", "kind": "class", "doc": "

*\nReset the scanner to factory settings.\nThis removes all projects and restores factory calibration.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FactoryReset"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FactoryReset"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request", "kind": "class", "doc": "

Client request for the FactoryReset task.

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response", "kind": "class", "doc": "

Server response for the FactoryReset task.

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"fullname": "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error", "modulename": "three.MF.V3.Tasks.FactoryReset", "qualname": "FactoryReset.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup": {"fullname": "three.MF.V3.Tasks.FlattenGroup", "modulename": "three.MF.V3.Tasks.FlattenGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup", "kind": "class", "doc": "

*\nFlatten a scan group such that it only consists of single scans.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FlattenGroup",\n"Input":0\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"FlattenGroup",\n"Input":0,\n"Output":{\n"groups":[{\n"index":2,\n"name":"Group 2",\n"groups":[{\n"index":1,\n"name":"Group 1"\n}]\n}],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request", "kind": "class", "doc": "

Client request for the FlattenGroup task.

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response", "kind": "class", "doc": "

Server response for the FlattenGroup task.

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error", "modulename": "three.MF.V3.Tasks.FlattenGroup", "qualname": "FlattenGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi": {"fullname": "three.MF.V3.Tasks.ForgetWifi", "modulename": "three.MF.V3.Tasks.ForgetWifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi", "kind": "class", "doc": "

*\nForget all wifi connections.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ForgetWifi"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ForgetWifi"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request", "kind": "class", "doc": "

Client request for the ForgetWifi task.

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response", "kind": "class", "doc": "

Server response for the ForgetWifi task.

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"fullname": "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error", "modulename": "three.MF.V3.Tasks.ForgetWifi", "qualname": "ForgetWifi.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo", "kind": "class", "doc": "

*\nGet the desktop-processing protocol version and capabilities.

\n\n

Older firmware does not implement this task; clients treat a failure as a\nserver without desktop-processing capabilities.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"GetProtocolInfo" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"GetProtocolInfo",\n"Output":{ "version":1, "capabilities":["scanCaptureStreaming"] },\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Request", "kind": "class", "doc": "

Client request for the GetProtocolInfo task.

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response", "kind": "class", "doc": "

Server response for the GetProtocolInfo task.

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.ProtocolInfo.ProtocolInfo = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"fullname": "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error", "modulename": "three.MF.V3.Tasks.GetProtocolInfo", "qualname": "GetProtocolInfo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus": {"fullname": "three.MF.V3.Tasks.GetScannerStatus", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus", "kind": "class", "doc": "

*\nGet the desktop engine's scanner connection status (desktop engine only).

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"GetScannerStatus" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"GetScannerStatus",\n"Output":{ "connected":true, "host":"192.168.50.115" },\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Request", "kind": "class", "doc": "

Client request for the GetScannerStatus task.

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response", "kind": "class", "doc": "

Server response for the GetScannerStatus task.

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.ScannerStatus.ScannerStatus = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"fullname": "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error", "modulename": "three.MF.V3.Tasks.GetScannerStatus", "qualname": "GetScannerStatus.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras": {"fullname": "three.MF.V3.Tasks.HasCameras", "modulename": "three.MF.V3.Tasks.HasCameras", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras", "kind": "class", "doc": "

*\nCheck if the scanner has working cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasCameras"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasCameras",\n"Output":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request", "kind": "class", "doc": "

Client request for the HasCameras task.

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response", "kind": "class", "doc": "

Server response for the HasCameras task.

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"fullname": "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error", "modulename": "three.MF.V3.Tasks.HasCameras", "qualname": "HasCameras.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector": {"fullname": "three.MF.V3.Tasks.HasProjector", "modulename": "three.MF.V3.Tasks.HasProjector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector", "kind": "class", "doc": "

*\nCheck if the scanner has a working projector.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasProjector"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasProjector",\n"Output":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request", "kind": "class", "doc": "

Client request for the HasProjector task.

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response", "kind": "class", "doc": "

Server response for the HasProjector task.

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"fullname": "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error", "modulename": "three.MF.V3.Tasks.HasProjector", "qualname": "HasProjector.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable": {"fullname": "three.MF.V3.Tasks.HasTurntable", "modulename": "three.MF.V3.Tasks.HasTurntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable", "kind": "class", "doc": "

*\nCheck if the scanner is connected to a working turntable.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasTurntable"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HasTurntable",\n"Output":true,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request", "kind": "class", "doc": "

Client request for the HasTurntable task.

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response", "kind": "class", "doc": "

Server response for the HasTurntable task.

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: bool = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"fullname": "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error", "modulename": "three.MF.V3.Tasks.HasTurntable", "qualname": "HasTurntable.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap": {"fullname": "three.MF.V3.Tasks.HeatMap", "modulename": "three.MF.V3.Tasks.HeatMap", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap", "kind": "class", "doc": "

*\nCompute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n
\n
\n\n
\n

Vertex position buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Position"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n}\n
\n
\n\n
\n

Vertex position binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex quality buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Quality"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n}\n
\n
\n\n
\n

Vertex quality binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Triangle index buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":4,\n"Size":1996356,\n"Descriptor":{\n"components":[{\n"type":"Triangle"\n"size":1,\n"offset":0,\n"normalized":false,\n}],\n"stride":1\n},\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]}\n}\n}\n}\n
\n
\n\n
\n

Triangle index binary data transfer from server [1996356 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"HeatMap",\n"Input":{"sources":[2],"targets":[3]},\n"Output":{\n"count":96564,\n"max":32.734107971191406,\n"mean":1.964127540588379,\n"median":0.12784385681152344,\n"min":9.611248970031738e-07,\n"outlierDistance":0.0,\n"stddev":4.970643997192383\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request", "kind": "class", "doc": "

Client request for the HeatMap task.

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.HeatMap.HeatMap)"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response", "kind": "class", "doc": "

Server response for the HeatMap task.

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.HeatMap.HeatMap,\tOutput: MF.V3.Descriptors.HeatMap.HeatMap,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"fullname": "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error", "modulename": "three.MF.V3.Tasks.HeatMap", "qualname": "HeatMap.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import": {"fullname": "three.MF.V3.Tasks.Import", "modulename": "three.MF.V3.Tasks.Import", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import": {"fullname": "three.MF.V3.Tasks.Import.Import", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import", "kind": "class", "doc": "

*\nImport a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file. Supported formats are DAE, FBX, GLB, OBJ, PLY and STL.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Import",\n"Input":{"unit":"Inch"}\n}\n}\n
\n
\n\n
\n

Buffer message from client.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1052,\n"Task":{\n"Index":1,\n"Type":"Import",\n"Input":{"unit":"Inch"}\n}\n}\n}\n
\n
\n\n
\n

Binary data transfer from client: The mesh zip file [1052 bytes].\n Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Import",\n"Input":{"unit":"Inch"},\n"Output":{\n"groups":[{"index":1,"name":"box","scan":1}],\n"imported":[{"file":"mesh.ply"}],\n"ignored":[],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Import.Import.Request": {"fullname": "three.MF.V3.Tasks.Import.Import.Request", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request", "kind": "class", "doc": "

Client request for the Import task.

\n"}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.__init__", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Import.Import = None)"}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.Index", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.Type", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"fullname": "three.MF.V3.Tasks.Import.Import.Request.Input", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response": {"fullname": "three.MF.V3.Tasks.Import.Import.Response", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response", "kind": "class", "doc": "

Server response for the Import task.

\n"}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.__init__", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Import.Import = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Index", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Type", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Input", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.State": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.State", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"fullname": "three.MF.V3.Tasks.Import.Import.Response.Error", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer", "kind": "class", "doc": "

Client buffer message for the Import task.

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.__init__", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.Index", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.Size", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"fullname": "three.MF.V3.Tasks.Import.Import.Buffer.Task", "modulename": "three.MF.V3.Tasks.Import", "qualname": "Import.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats": {"fullname": "three.MF.V3.Tasks.ListExportFormats", "modulename": "three.MF.V3.Tasks.ListExportFormats", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats", "kind": "class", "doc": "

*\nList all export formats and the geometry elements they support.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListExportFormats"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListExportFormats",\n"Output":{[\n{\n"format": "ply",\n"colors": true,\n"description": "Polygon format",\n"extension": ".ply",\n"faces": ["Point","Triangle","Quad"],\n"normals": true,\n"textures": "Single"\n},\n{\n"format": "obj",\n"colors": true,\n"description": "Wavefront format",\n"extension": ".obj",\n"faces": ["Point","Triangle","Quad"],\n"normals": true,\n"textures": "Multiple"\n},\n{\n"format": "stl",\n"colors": false,\n"description": "Stereolithography format",\n"extension": ".stl",\n"faces": ["Point","Triangle"],\n"normals": true,\n"textures": "None"\n}\n]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request", "kind": "class", "doc": "

Client request for the ListExportFormats task.

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response", "kind": "class", "doc": "

Server response for the ListExportFormats task.

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Export.Export] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"fullname": "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error", "modulename": "three.MF.V3.Tasks.ListExportFormats", "qualname": "ListExportFormats.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups": {"fullname": "three.MF.V3.Tasks.ListGroups", "modulename": "three.MF.V3.Tasks.ListGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups", "kind": "class", "doc": "

*\nList the scan groups in the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListGroups"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListGroups",\n"Output":{\n"groups":[\n{\n"index":1,\n"scan":1,\n"name":"Scan-1",\n"color":[0.75,0.5,0.2,1.0],\n"rotation":[0.03,0.1,-0.01],\n"translation":[-101,67,-561],\n"visible":true\n},\n{\n"index":2,\n"scan":2,\n"name":"Scan-2",\n"color":[0.7,0.9,0.6,1.0],\n"rotation":[0.1,0.2,0.5],\n"translation":[-90,64,-553],\n"visible":true\n},\n{\n"index":3,\n"scan":3,\n"name":"Scan-3",\n"color":[0.6,0.8,0.9,1.0],\n"visible":true\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request", "kind": "class", "doc": "

Client request for the ListGroups task.

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response", "kind": "class", "doc": "

Server response for the ListGroups task.

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"fullname": "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error", "modulename": "three.MF.V3.Tasks.ListGroups", "qualname": "ListGroups.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces", "kind": "class", "doc": "

*\nList network interfaces.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListNetworkInterfaces"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListNetworkInterfaces",\n"Output":[\n{"ip":"192.168.1.234","name":"eth0","ssid":""},\n{"ip":"127.0.0.1","name":"lo","ssid":""}\n{"ip":"192.168.2.345","name":"wlan0","ssid":"Network1"}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request", "kind": "class", "doc": "

Client request for the ListNetworkInterfaces task.

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response", "kind": "class", "doc": "

Server response for the ListNetworkInterfaces task.

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Network.Interface = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"fullname": "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error", "modulename": "three.MF.V3.Tasks.ListNetworkInterfaces", "qualname": "ListNetworkInterfaces.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects": {"fullname": "three.MF.V3.Tasks.ListProjects", "modulename": "three.MF.V3.Tasks.ListProjects", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects", "kind": "class", "doc": "

*\nList all projects.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListProjects"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListProjects",\n"Output":[\n{"index":1,"modified":[2024,5,12,11,23,17],"name":"Project 1","size":35409834},\n{"index":2,"modified":[2024,5,12,11,2,37],"name":"Project 2","size":175025367},\n{"index":3,"modified":[2024,5,6,17,15,53],"name":"Project 3","size":24314083}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request", "kind": "class", "doc": "

Client request for the ListProjects task.

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response", "kind": "class", "doc": "

Server response for the ListProjects task.

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Brief = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"fullname": "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error", "modulename": "three.MF.V3.Tasks.ListProjects", "qualname": "ListProjects.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects": {"fullname": "three.MF.V3.Tasks.ListScannerProjects", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects", "kind": "class", "doc": "

*\nList the projects on the connected scanner (desktop engine only).

\n\n

The counterpart of ListProjects, which lists the engine's local projects.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"ListScannerProjects" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListScannerProjects",\n"Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Request", "kind": "class", "doc": "

Client request for the ListScannerProjects task.

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response", "kind": "class", "doc": "

Server response for the ListScannerProjects task.

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Project.Project.Brief] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"fullname": "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error", "modulename": "three.MF.V3.Tasks.ListScannerProjects", "qualname": "ListScannerProjects.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans": {"fullname": "three.MF.V3.Tasks.ListScans", "modulename": "three.MF.V3.Tasks.ListScans", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans", "kind": "class", "doc": "

*\nList the scans in the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListScans"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListScans",\n"Output":{[\n{\n"color":[0.8,0.5,0.6,1.0],\n"index":1,\n"name":"Scan-1",\n"scan":1,\n"rotation":[0.2,0.8,-0.1],\n"translation":[-275,-32,-134],\n"visible":true\n},\n{\n"color":[0.5,0.7,0.2,1.0],\n"index":2,\n"name":"Scan-2",\n"scan":2,\n"rotation":[0.7,-0.5,0.3],\n"translation":[75,-62,38],\n"visible":true\n},\n]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request", "kind": "class", "doc": "

Client request for the ListScans task.

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request.Index", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Request.Type", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response", "kind": "class", "doc": "

Server response for the ListScans task.

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Project.Project.Group] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Index", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Type", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Output", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.State", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"fullname": "three.MF.V3.Tasks.ListScans.ListScans.Response.Error", "modulename": "three.MF.V3.Tasks.ListScans", "qualname": "ListScans.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings": {"fullname": "three.MF.V3.Tasks.ListSettings", "modulename": "three.MF.V3.Tasks.ListSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings", "kind": "class", "doc": "

*\nGet scanner settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListSettings"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListSettings",\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request", "kind": "class", "doc": "

Client request for the ListSettings task.

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response", "kind": "class", "doc": "

Server response for the ListSettings task.

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error", "modulename": "three.MF.V3.Tasks.ListSettings", "qualname": "ListSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi": {"fullname": "three.MF.V3.Tasks.ListWifi", "modulename": "three.MF.V3.Tasks.ListWifi", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi", "kind": "class", "doc": "

*\nList available wifi networks.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListWifi"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ListWifi",\n"Output":{\n"networks":[\n{"ssid":"Network1","isActive":true,"isPublic":false,"quality":90},\n{"ssid":"Network2","isActive":true,"isPublic":true,"quality":50},\n{"ssid":"Network3","isActive":true,"isPublic":true,"quality":75}\n],\n"ssid":"Network1"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request", "kind": "class", "doc": "

Client request for the ListWifi task.

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response", "kind": "class", "doc": "

Server response for the ListWifi task.

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Wifi.Wifi = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"fullname": "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error", "modulename": "three.MF.V3.Tasks.ListWifi", "qualname": "ListWifi.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge": {"fullname": "three.MF.V3.Tasks.Merge", "modulename": "three.MF.V3.Tasks.Merge", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge": {"fullname": "three.MF.V3.Tasks.Merge.Merge", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge", "kind": "class", "doc": "

*\nMerge two or more scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Merge",\n"Input":{\n"selection":{"mode":"visible"},\n"remesh":{\n"method": "FlowTriangles",\n"quality": "Medium"\n},\n"simplify":{"triangleCount": 20000 }\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Merge",\n"Input":{\n"selection":{"mode":"visible"},\n"remesh":{\n"method": "FlowTriangles",\n"quality": "Medium"\n},\n"simplify":{"triangleCount": 20000 }\n},\n"Output":{\n"meshes":[\n{\n"name":"Combined",\n"positions":237757,\n"normals":237757,\n"triangles":459622,\n"size":11221632\n},\n{\n"name":"Remeshed",\n"positions":34311,\n"normals":0,\n"triangles":29738,\n"size":945540\n},\n{\n"name":"Simplified",\n"positions":32415,\n"normals":0,\n"triangles":20000,\n"size":628980\n}\n],\n"scans":3,\n"textures":3\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Merge.Merge.Request": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request", "kind": "class", "doc": "

Client request for the Merge task.

\n"}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.__init__", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Merge.Merge)"}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.Index", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.Type", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Request.Input", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response", "kind": "class", "doc": "

Server response for the Merge task.

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.__init__", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Merge.Merge,\tOutput: MF.V3.Descriptors.Merge.Merge,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Index", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Type", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Input", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Output", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.State", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"fullname": "three.MF.V3.Tasks.Merge.Merge.Response.Error", "modulename": "three.MF.V3.Tasks.Merge", "qualname": "Merge.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData": {"fullname": "three.MF.V3.Tasks.MergeData", "modulename": "three.MF.V3.Tasks.MergeData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData", "kind": "class", "doc": "

*\nDownload the raw scan data for the current merge process.

\n\n
\n

Request example:

\n
\n\n
{\n\"Task\":{\n\"Index\":1,\n\"Type\":\"MergeData\",\n\"Input\":{\n\"index\":-1,\n\"buffers\":[\"All\"]\n}\n}\n}\n
\n\n
\n

Vertex position buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Position"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex position binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex normal buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":1,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Normal"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex normal binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex texture coordinate buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":2,\n"Size":1038792,\n"Descriptor":{\n"components":[{\n"type":"UV"\n"size":2,\n"offset":0,\n"normalized":false,\n}],\n"stride":2\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex texture coordinate binary data transfer from server [1038792 bytes].

\n
\n\n
\n

Texture image buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":3,\n"Size":3504494,\n"Descriptor":{\n"components":[{\n"type":"Texture"\n"size":0,\n"offset":0,\n"normalized":false,\n}],\n"stride":0\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Texture binary data transfer from server [3504494 bytes].

\n
\n\n
\n

Triangle index buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":4,\n"Size":1996356,\n"Descriptor":{\n"components":[{\n"type":"Triangle"\n"size":1,\n"offset":0,\n"normalized":false,\n}],\n"stride":1\n},\n"Task":{\n"Index":1,\n"Type":"MergeData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Triangle index binary data transfer from server [1996356 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"MergeData"\n"Input":{"index":-1,"buffers":["All"]},\n"Output":{\n"buffers":[\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Position"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Normal"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":2,"type":"UV"}],"stride":2},\n{"components":[{"normalized":false,"offset":0,"size":0,"type":"Texture"}],"stride":0},\n{"components":[{"normalized":false,"offset":0,"size":1,"type":"Triangle"}],"stride":1}\n],\n"index":1,\n"name":"Scan-1"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request", "kind": "class", "doc": "

Client request for the MergeData task.

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.ScanData.ScanData)"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.Index", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.Type", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Request.Input", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response", "kind": "class", "doc": "

Server response for the MergeData task.

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.ScanData.ScanData,\tOutput: MF.V3.Descriptors.ScanData.ScanData,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Index", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Type", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Input", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Output", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.State", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Response.Error", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer", "kind": "class", "doc": "

Server buffer message for the MergeData task.

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.ScanData.ScanData.Buffer)"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.MergeData", "qualname": "MergeData.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup": {"fullname": "three.MF.V3.Tasks.MoveGroup", "modulename": "three.MF.V3.Tasks.MoveGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup", "kind": "class", "doc": "

*\nMove a scan group.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"MoveGroup",\n"Input":[1,2,0]\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"MoveGroup",\n"Input":[1,2,0],\n"Output":{\n"groups":[{\n"index":2,\n"name":"Group 2",\n"groups":[{\n"index":1,\n"name":"Group 1"\n}]\n}],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request", "kind": "class", "doc": "

Client request for the MoveGroup task.

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.Type", "kind": "variable", "doc": "

The requested source and destination move indices.\nAn Array of group indexes where

\n\n
    \n
  1. The first is the index of the _source group_: the group to be moved.
  2. \n
  3. The second is the index of the _parent group_: the group into which the source group is moved.
  4. \n
  5. (Optional) The third is the zero-based order in which the source group is placed the other children of the parent group. Use 0 to insert the source group at the beginning of the parent group's children. If omitted, the source group is inserted at the end of the parent group's children.
  6. \n
\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response", "kind": "class", "doc": "

Server response for the MoveGroup task.

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tInput: List[int] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error", "modulename": "three.MF.V3.Tasks.MoveGroup", "qualname": "MoveGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup": {"fullname": "three.MF.V3.Tasks.NewGroup", "modulename": "three.MF.V3.Tasks.NewGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup", "kind": "class", "doc": "

*\nCreate a new scan group.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewGroup",\n"Input":{\n"parentIndex":0,\n"baseName":"Group"\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewGroup",\n"Input":{\n"parentIndex":0,\n"baseName":"Group"\n},\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Group 1"\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request", "kind": "class", "doc": "

Client request for the NewGroup task.

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.NewGroup.NewGroup = None)"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response", "kind": "class", "doc": "

Server response for the NewGroup task.

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tInput: MF.V3.Settings.NewGroup.NewGroup = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error", "modulename": "three.MF.V3.Tasks.NewGroup", "qualname": "NewGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject": {"fullname": "three.MF.V3.Tasks.NewProject", "modulename": "three.MF.V3.Tasks.NewProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject", "kind": "class", "doc": "

*\nCreate a new project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewProject",\n"Input":"New Project Name"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewProject",\n"Input":{\n"name":"New Project Name"\n},\n"Output":{\n"index":5,\n"name":"New Project Name"\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request", "kind": "class", "doc": "

Client request for the NewProject task.

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: str = None)"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.Index", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.Type", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Request.Input", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response", "kind": "class", "doc": "

Server response for the NewProject task.

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Project.Project = None,\tOutput: MF.V3.Descriptors.Project.Project = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Index", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Type", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Input", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Output", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.State", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"fullname": "three.MF.V3.Tasks.NewProject.NewProject.Response.Error", "modulename": "three.MF.V3.Tasks.NewProject", "qualname": "NewProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan": {"fullname": "three.MF.V3.Tasks.NewScan", "modulename": "three.MF.V3.Tasks.NewScan", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan", "kind": "class", "doc": "

*\nCapture a new scan.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewScan"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"NewScan"\n"Input":{\n"camera":{"exposure":18000,"analogGain":256,"digitalGain":256},\n"capture":{"quality":"Medium","texture":true},\n"projector":{"brightness":0.8}\n},\n"Output":{\n"groups":[{\n"color":[0.8,0.5,0.6,1.0],\n"index":1,\n"name":"Scan-1",\n"scan":1,\n"rotation":[0.2,0.8,-0.1],\n"translation":[-275,-32,-134],\n"visible":true\n}],\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request", "kind": "class", "doc": "

Client request for the NewScan task.

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Scan.Scan = None)"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.Index", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.Type", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Request.Input", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response", "kind": "class", "doc": "

Server response for the NewScan task.

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Scan.Scan = None,\tOutput: MF.V3.Descriptors.Project.Project.Group = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Index", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Type", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Input", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Output", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.State", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"fullname": "three.MF.V3.Tasks.NewScan.NewScan.Response.Error", "modulename": "three.MF.V3.Tasks.NewScan", "qualname": "NewScan.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject": {"fullname": "three.MF.V3.Tasks.OpenProject", "modulename": "three.MF.V3.Tasks.OpenProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject", "kind": "class", "doc": "

*\nCreate a new project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"OpenProject",\n"Input":5\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"OpenProject",\n"Input":5,\n"Output":{\n"index":5,\n"name":"Project 5"\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request", "kind": "class", "doc": "

Client request for the OpenProject task.

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response", "kind": "class", "doc": "

Server response for the OpenProject task.

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tOutput: MF.V3.Descriptors.Project.Project = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"fullname": "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error", "modulename": "three.MF.V3.Tasks.OpenProject", "qualname": "OpenProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings": {"fullname": "three.MF.V3.Tasks.PopSettings", "modulename": "three.MF.V3.Tasks.PopSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings", "kind": "class", "doc": "

*\nPop and restore scanner settings from the stack and optionally apply the popped settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PopSettings",\n"Input":true\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PopSettings",\n"Input":true,\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request", "kind": "class", "doc": "

Client request for the PopSettings task.

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: bool = None)"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response", "kind": "class", "doc": "

Server response for the PopSettings task.

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: bool = None,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error", "modulename": "three.MF.V3.Tasks.PopSettings", "qualname": "PopSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject": {"fullname": "three.MF.V3.Tasks.PullProject", "modulename": "three.MF.V3.Tasks.PullProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject", "kind": "class", "doc": "

*\nCopy a project from the connected scanner into the local workspace\n(desktop engine only).

\n\n

The engine downloads the scanner project's archive and imports it as a new\nlocal copy (it always receives a new project index). Progress covers the\narchive, transfer and extraction phases as one range.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"PullProject", "Input":2 }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PullProject",\n"Output":[{ "index":4, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Request", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Request", "kind": "class", "doc": "

Client request for the PullProject task.

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Request.Index", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Request.Type", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Request.Input", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response", "kind": "class", "doc": "

Server response for the PullProject task.

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Project.Project.Brief] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response.Index", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response.Type", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response.Output", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response.State", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"fullname": "three.MF.V3.Tasks.PullProject.PullProject.Response.Error", "modulename": "three.MF.V3.Tasks.PullProject", "qualname": "PullProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject": {"fullname": "three.MF.V3.Tasks.PushProject", "modulename": "three.MF.V3.Tasks.PushProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject", "kind": "class", "doc": "

*\nCopy a local project to the connected scanner (desktop engine only).

\n\n

The engine archives the local project, uploads it to the scanner, and the\nscanner imports it as a new copy (it always receives a new project index).\nProgress covers the archive, transfer and extraction phases as one range.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"PushProject", "Input":3 }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PushProject",\n"Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Request", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Request", "kind": "class", "doc": "

Client request for the PushProject task.

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Request.Index", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Request.Type", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Request.Input", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response", "kind": "class", "doc": "

Server response for the PushProject task.

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Project.Project.Brief] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response.Index", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response.Type", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response.Output", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response.State", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"fullname": "three.MF.V3.Tasks.PushProject.PushProject.Response.Error", "modulename": "three.MF.V3.Tasks.PushProject", "qualname": "PushProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings": {"fullname": "three.MF.V3.Tasks.PushSettings", "modulename": "three.MF.V3.Tasks.PushSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings", "kind": "class", "doc": "

*\nPush the current scanner settings to a stack so they can be restored with PopSettings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PushSettings"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"PushSettings",\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request", "kind": "class", "doc": "

Client request for the PushSettings task.

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response", "kind": "class", "doc": "

Server response for the PushSettings task.

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error", "modulename": "three.MF.V3.Tasks.PushSettings", "qualname": "PushSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot": {"fullname": "three.MF.V3.Tasks.Reboot", "modulename": "three.MF.V3.Tasks.Reboot", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot", "kind": "class", "doc": "

*\nReboot the scanner.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Reboot"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Reboot"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request", "kind": "class", "doc": "

Client request for the Reboot task.

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request.Index", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Request.Type", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response", "kind": "class", "doc": "

Server response for the Reboot task.

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.Index", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.Type", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.State", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"fullname": "three.MF.V3.Tasks.Reboot.Reboot.Response.Error", "modulename": "three.MF.V3.Tasks.Reboot", "qualname": "Reboot.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups": {"fullname": "three.MF.V3.Tasks.RemoveGroups", "modulename": "three.MF.V3.Tasks.RemoveGroups", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups", "kind": "class", "doc": "

*\nRemove selected scan groups.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveGroups",\n"Input":[1,2]\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveGroups",\n"Input":[1,2],\n"Output":{"groups":[]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request", "kind": "class", "doc": "

Client request for the RemoveGroups task.

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response", "kind": "class", "doc": "

Server response for the RemoveGroups task.

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tInput: List[int] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"fullname": "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error", "modulename": "three.MF.V3.Tasks.RemoveGroups", "qualname": "RemoveGroups.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects": {"fullname": "three.MF.V3.Tasks.RemoveProjects", "modulename": "three.MF.V3.Tasks.RemoveProjects", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects", "kind": "class", "doc": "

*\nRemove selected projects.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveProjects",\n"Input":[1,3,6]\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveProjects",\n"Input":[1,3,6],\n"Output":[\n{"index":2,"modified":[2024,5,12,11,23,17],"name":"Project 2","size":35409834},\n{"index":4,"modified":[2024,5,12,11,2,37],"name":"Project 4","size":175025367},\n{"index":5,"modified":[2024,5,6,17,15,53],"name":"Project 5","size":24314083}\n],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request", "kind": "class", "doc": "

Client request for the RemoveProjects task.

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response", "kind": "class", "doc": "

Server response for the RemoveProjects task.

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: List[int] = None,\tOutput: MF.V3.Descriptors.Project.Project.Brief = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"fullname": "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error", "modulename": "three.MF.V3.Tasks.RemoveProjects", "qualname": "RemoveProjects.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects", "kind": "class", "doc": "

*\nRemove projects on the connected scanner (desktop engine only).

\n\n

The counterpart of RemoveProjects, which removes local projects.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"RemoveScannerProjects", "Input":[2, 3] }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RemoveScannerProjects",\n"Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Request", "kind": "class", "doc": "

Client request for the RemoveScannerProjects task.

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[int] = None)"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response", "kind": "class", "doc": "

Server response for the RemoveScannerProjects task.

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: List[MF.V3.Descriptors.Project.Project.Brief] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"fullname": "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error", "modulename": "three.MF.V3.Tasks.RemoveScannerProjects", "qualname": "RemoveScannerProjects.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration", "kind": "class", "doc": "

*\nRestore factory calibration.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RestoreFactoryCalibration"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RestoreFactoryCalibration",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request", "kind": "class", "doc": "

Client request for the RestoreFactoryCalibration task.

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response", "kind": "class", "doc": "

Server response for the RestoreFactoryCalibration task.

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"fullname": "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error", "modulename": "three.MF.V3.Tasks.RestoreFactoryCalibration", "qualname": "RestoreFactoryCalibration.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable": {"fullname": "three.MF.V3.Tasks.RotateTurntable", "modulename": "three.MF.V3.Tasks.RotateTurntable", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable", "kind": "class", "doc": "

*\nRotate the turntable.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RotateTurntable",\n"Input":15\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"RotateTurntable",\n"Input":15,\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request", "kind": "class", "doc": "

Client request for the RotateTurntable task.

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response", "kind": "class", "doc": "

Server response for the RotateTurntable task.

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"fullname": "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error", "modulename": "three.MF.V3.Tasks.RotateTurntable", "qualname": "RotateTurntable.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData": {"fullname": "three.MF.V3.Tasks.ScanData", "modulename": "three.MF.V3.Tasks.ScanData", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData", "kind": "class", "doc": "

*\nDownload the raw scan data for a scan in the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n
\n
\n\n
\n

Vertex position buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Position"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex position binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex normal buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":1,\n"Size":1558188,\n"Descriptor":{\n"components":[{\n"type":"Normal"\n"size":3,\n"offset":0,\n"normalized":false,\n}],\n"stride":3\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex normal binary data transfer from server [1558188 bytes].

\n
\n\n
\n

Vertex texture coordinate buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":2,\n"Size":1038792,\n"Descriptor":{\n"components":[{\n"type":"UV"\n"size":2,\n"offset":0,\n"normalized":false,\n}],\n"stride":2\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Vertex texture coordinate binary data transfer from server [1038792 bytes].

\n
\n\n
\n

Texture image buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":3,\n"Size":3504494,\n"Descriptor":{\n"components":[{\n"type":"Texture"\n"size":0,\n"offset":0,\n"normalized":false,\n}],\n"stride":0\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Texture binary data transfer from server [3504494 bytes].

\n
\n\n
\n

Triangle index buffer message from server.

\n
\n\n
\n
{\n"Buffer":{\n"Index":4,\n"Size":1996356,\n"Descriptor":{\n"components":[{\n"type":"Triangle"\n"size":1,\n"offset":0,\n"normalized":false,\n}],\n"stride":1\n},\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{\n"index":1,\n"buffers":["All"]\n}\n}\n}\n}\n
\n
\n\n
\n

Triangle index binary data transfer from server [1996356 bytes].

\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"ScanData",\n"Input":{"buffers":["All"],"index":1},\n"Output":{\n"buffers":[\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Position"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":3,"type":"Normal"}],"stride":3},\n{"components":[{"normalized":false,"offset":0,"size":2,"type":"UV"}],"stride":2},\n{"components":[{"normalized":false,"offset":0,"size":0,"type":"Texture"}],"stride":0},\n{"components":[{"normalized":false,"offset":0,"size":1,"type":"Triangle"}],"stride":1}\n],\n"index":1,\n"name":"Scan-1"\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request", "kind": "class", "doc": "

Client request for the ScanData task.

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.ScanData.ScanData)"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.Index", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.Type", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Request.Input", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response", "kind": "class", "doc": "

Server response for the ScanData task.

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.ScanData.ScanData,\tOutput: MF.V3.Descriptors.ScanData.ScanData,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Index", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Type", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Input", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Output", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.State", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Response.Error", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer", "kind": "class", "doc": "

Server buffer message for the ScanData task.

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tSize: int,\tTask: MF.V3.Task.Task,\tDescriptor: MF.V3.Descriptors.ScanData.ScanData.Buffer)"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"fullname": "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor", "modulename": "three.MF.V3.Tasks.ScanData", "qualname": "ScanData.Buffer.Descriptor", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras": {"fullname": "three.MF.V3.Tasks.SetCameras", "modulename": "three.MF.V3.Tasks.SetCameras", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras", "kind": "class", "doc": "

*\nApply camera settings to one or both cameras.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras",\n"Input":{\n"analogGain":256,\n"digitalGain":128,\n"exposure":18000\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetCameras"\n"Input":{\n"analogGain":256,\n"digitalGain":512,\n"exposure":18000\n},\n"Output":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":512},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request", "kind": "class", "doc": "

Client request for the SetCameras task.

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Camera.Camera = None)"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response", "kind": "class", "doc": "

Server response for the SetCameras task.

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Camera.Camera = None,\tOutput: MF.V3.Descriptors.Settings.Camera.Camera = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"fullname": "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error", "modulename": "three.MF.V3.Tasks.SetCameras", "qualname": "SetCameras.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup": {"fullname": "three.MF.V3.Tasks.SetGroup", "modulename": "three.MF.V3.Tasks.SetGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup", "kind": "class", "doc": "

*\nSet scan group properties.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetGroup",\n"Input":{\n"index":2,\n"name":"Amazing Scan"\n"color":[1,0,0,1],\n"rotation":[0,3.14,0],\n"translation":[0,10,25]\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetGroup",\n"Input":{\n"index":2,\n"name":"Amazing Scan"\n"color":[1,0,0,1],\n"rotation":[0,3.14,0],\n"translation":[0,10,25]\n}\n"Output":{\n"groups":[\n{\n"index":1,\n"scan":1,\n"name":"Scan-1",\n"color":[0.75,0.5,0.2,1.0],\n"rotation":[0.03,0.1,-0.01],\n"translation":[-101,67,-561],\n"visible":true\n},\n{\n"index":2,\n"scan":2,\n"name":"Amazing Scan",\n"color":[1,0,0,1],\n"rotation":[0,3.14,0],\n"translation":[0,10,25],\n"visible":true\n},\n{\n"index":3,\n"scan":3,\n"name":"Scan-3",\n"color":[0.6,0.8,0.9,1.0],\n"visible":true\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request", "kind": "class", "doc": "

Client request for the SetGroup task.

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Group.Group)"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response", "kind": "class", "doc": "

Server response for the SetGroup task.

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Group.Group,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error", "modulename": "three.MF.V3.Tasks.SetGroup", "qualname": "SetGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices", "kind": "class", "doc": "

*\nSelect which side processes scan captures for this connection.

\n\n

The input is a pair of booleans [server, client]. With client processing\nenabled the server streams raw scan captures (see the ScanCapture\ndescriptor) to this connection during NewScan instead of processing them\non-device. The setting is per-connection: other clients are unaffected.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"SetProcessingDevices", "Input":[false, true] }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"SetProcessingDevices", "State":"Completed" }\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Request", "kind": "class", "doc": "

Client request for the SetProcessingDevices task.

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: List[bool] = None)"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Response", "kind": "class", "doc": "

Server response for the SetProcessingDevices task.

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"fullname": "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error", "modulename": "three.MF.V3.Tasks.SetProcessingDevices", "qualname": "SetProcessingDevices.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject": {"fullname": "three.MF.V3.Tasks.SetProject", "modulename": "three.MF.V3.Tasks.SetProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject", "kind": "class", "doc": "

*\nApply settings to the current open project.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProject",\n"Input":{\n"name":"My Project"\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProject",\n"Input":{\n"name":"My Project"\n},\n"Output":{\n"index":5,\n"name":"My Project",\n"groups":[{\n"color":[0.8,0.5,0.6,1.0],\n"index":1,\n"name":"Scan-1",\n"scan":1,\n"rotation":[0.2,0.8,-0.1],\n"translation":[-275,-32,-134],\n"visible":true\n}],\n}\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request", "kind": "class", "doc": "

Client request for the SetProject task.

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Project.Project = None)"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.Index", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.Type", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Request.Input", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response", "kind": "class", "doc": "

Server response for the SetProject task.

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Project.Project = None,\tOutput: MF.V3.Descriptors.Project.Project = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Index", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Type", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Input", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Output", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.State", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"fullname": "three.MF.V3.Tasks.SetProject.SetProject.Response.Error", "modulename": "three.MF.V3.Tasks.SetProject", "qualname": "SetProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector": {"fullname": "three.MF.V3.Tasks.SetProjector", "modulename": "three.MF.V3.Tasks.SetProjector", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector", "kind": "class", "doc": "

*\nApply projector settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProjector"\n"Input":{\n"on":true,\n"brightness":0.75,\n"color":[1.0, 1.0, 1.0]\n},\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SetProjector"\n"Input":{\n"on":true,\n"brightness":0.75,\n"color":[1.0, 1.0, 1.0]\n},\n"Output":{\n"on":{"default":false,"value":true},\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.75}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request", "kind": "class", "doc": "

Client request for the SetProjector task.

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Projector.Projector = None)"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response", "kind": "class", "doc": "

Server response for the SetProjector task.

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Projector.Projector = None,\tOutput: MF.V3.Descriptors.Settings.Projector.Projector = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"fullname": "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error", "modulename": "three.MF.V3.Tasks.SetProjector", "qualname": "SetProjector.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown": {"fullname": "three.MF.V3.Tasks.Shutdown", "modulename": "three.MF.V3.Tasks.Shutdown", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown", "kind": "class", "doc": "

*\nShutdown the scanner.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Shutdown"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Shutdown"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request", "kind": "class", "doc": "

Client request for the Shutdown task.

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response", "kind": "class", "doc": "

Server response for the Shutdown task.

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"fullname": "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error", "modulename": "three.MF.V3.Tasks.Shutdown", "qualname": "Shutdown.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth": {"fullname": "three.MF.V3.Tasks.Smooth", "modulename": "three.MF.V3.Tasks.Smooth", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth", "kind": "class", "doc": "

*\nSmooth a set of scans.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Smooth",\n"Input":{\n"selection":{"mode":"visible"},\n"taubin":{"iterations": 3, "lambda": 0.5, "mu": -0.53}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"Smooth",\n"Input":{\n"selection":{"mode":"visible"},\n"taubin":{"iterations": 3, "lambda": 0.5, "mu": -0.53}\n},\n"Output":{[1, 2, 3]},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request", "kind": "class", "doc": "

Client request for the Smooth task.

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Smooth.Smooth)"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.Index", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.Type", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Request.Input", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response", "kind": "class", "doc": "

Server response for the Smooth task.

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Smooth.Smooth,\tOutput: List[int] = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Index", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Type", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Input", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Output", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.State", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"fullname": "three.MF.V3.Tasks.Smooth.Smooth.Response.Error", "modulename": "three.MF.V3.Tasks.Smooth", "qualname": "Smooth.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup": {"fullname": "three.MF.V3.Tasks.SplitGroup", "modulename": "three.MF.V3.Tasks.SplitGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup", "kind": "class", "doc": "

*\nSplit a scan group (ie. move its subgroups to its parent group).

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SplitGroup",\n"Input":0\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"SplitGroup",\n"Input":0,\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Group 1",\n},\n{\n"index":2,\n"name":"Group 2"\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request", "kind": "class", "doc": "

Client request for the SplitGroup task.

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: int)"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response", "kind": "class", "doc": "

Server response for the SplitGroup task.

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: int,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error", "modulename": "three.MF.V3.Tasks.SplitGroup", "qualname": "SplitGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo": {"fullname": "three.MF.V3.Tasks.StartVideo", "modulename": "three.MF.V3.Tasks.StartVideo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo", "kind": "class", "doc": "

*\nStart the video stream.

\n\n

The video frames are sent as task buffers associated with the reserved video task index -1. The left and right camera frames are sent in buffer 0 and 1, respectively.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StartVideo"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StartVideo",\n"Output":{\n"codec":"JPEG",\n"format":"YUV420",\n"width":510,\n"height":380\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request", "kind": "class", "doc": "

Client request for the StartVideo task.

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response", "kind": "class", "doc": "

Server response for the StartVideo task.

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Settings.Video.Video = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"fullname": "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error", "modulename": "three.MF.V3.Tasks.StartVideo", "qualname": "StartVideo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo": {"fullname": "three.MF.V3.Tasks.StopVideo", "modulename": "three.MF.V3.Tasks.StopVideo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo", "kind": "class", "doc": "

*\nStop the video stream.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StopVideo"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StopVideo",\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request", "kind": "class", "doc": "

Client request for the StopVideo task.

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response", "kind": "class", "doc": "

Server response for the StopVideo task.

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"fullname": "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error", "modulename": "three.MF.V3.Tasks.StopVideo", "qualname": "StopVideo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo": {"fullname": "three.MF.V3.Tasks.StorageInfo", "modulename": "three.MF.V3.Tasks.StorageInfo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo", "kind": "class", "doc": "

*\nGet the local and scanner storage space (desktop engine only).

\n\n

The scanner space is absent when no scanner is connected.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{ "Index":1, "Type":"StorageInfo" }\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"StorageInfo",\n"Output":{\n"local":{ "available":349709045760, "capacity":750199750656 },\n"scanner":{ "available":19096510464, "capacity":30482370560 }\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Request", "kind": "class", "doc": "

Client request for the StorageInfo task.

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response", "kind": "class", "doc": "

Server response for the StorageInfo task.

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: three.MF.V3.Tasks.StorageInfo.StorageInfo = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"fullname": "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error", "modulename": "three.MF.V3.Tasks.StorageInfo", "qualname": "StorageInfo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo": {"fullname": "three.MF.V3.Tasks.SystemInfo", "modulename": "three.MF.V3.Tasks.SystemInfo", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo", "kind": "class", "doc": "

*\nGet system information including the serial number, disk space and installed and available software versions.

\n\n

Request example:

\n\n
{\n\"Task\":{\n\"Index\":1,\n\"Type\":\"SystemInfo\",\n\"Input\":{\n\"installed\":[\"server\",\"frontend\"],\n\"available\":[\"server\",\"frontend\"]\n}\n}\n}\n
\n\n

Response example:

\n\n
{\n\"Task\":{\n\"Index\":1,\n\"Type\":\"SystemInfo\"\n\"Input\":{\n\"installed\":[\"server\",\"frontend\"],\n\"available\":[\"server\",\"frontend\"]\n}\n\"Output\":{\n\"serialNumber\":\"1000000012345678\",\n\"diskSpace\":{\"available\":8523210752,\"capacity\":15082610688},\n\"software:{\n\"installed\":[\n{\n\"name\":\"server\",\n\"version\":{\n\"major\":2,\n\"minor\":21,\n\"patch\":119,\n\"string\":\"2.21.119\"\n}\n},\n{\n\"name\":\"frontend\",\n\"version\":{\n\"major\":2,\n\"minor\":14,\n\"patch\":39,\n\"string\":\"2.14.39\"\n}\n}\n},\n]\n},\n\"State\":\"Completed\"\n}\n}\n
\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request", "kind": "class", "doc": "

Client request for the SystemInfo task.

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Software.Software = None)"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response", "kind": "class", "doc": "

Server response for the SystemInfo task.

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.System.System,\tInput: MF.V3.Settings.Software.Software = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"fullname": "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error", "modulename": "three.MF.V3.Tasks.SystemInfo", "qualname": "SystemInfo.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup": {"fullname": "three.MF.V3.Tasks.TransformGroup", "modulename": "three.MF.V3.Tasks.TransformGroup", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup", "kind": "class", "doc": "

*\nApply a rigid transformation to a group.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TransformGroup",\n"Input":{\n"index":1,\n"rotation":[0.5, 1.0, 1.5],\n"translation":[10, 20, 30]\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TransformGroup",\n"Input":{\n"index":1,\n"rotation":[0.5, 1.0, 1.5],\n"translation":[10, 20, 30]\n},\n"Output":{\n"groups":[\n{\n"index":1,\n"name":"Group 1",\n"rotation":[0.5, 1.0, 1.5],\n"translation":[10, 20, 30]\n}\n]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request", "kind": "class", "doc": "

Client request for the TransformGroup task.

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Group.Group)"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response", "kind": "class", "doc": "

Server response for the TransformGroup task.

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Group.Group,\tOutput: MF.V3.Descriptors.Project.Project.Group,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"fullname": "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error", "modulename": "three.MF.V3.Tasks.TransformGroup", "qualname": "TransformGroup.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration": {"fullname": "three.MF.V3.Tasks.TurntableCalibration", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration", "kind": "class", "doc": "

*\nGet the turntable calibration descriptor.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TurntableCalibration"\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"TurntableCalibration",\n"Output":{\n"date":[2024,4,27,16,57,35],\n"quality":"Excellent",\n"focus":[300,320]\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request", "kind": "class", "doc": "

Client request for the TurntableCalibration task.

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response", "kind": "class", "doc": "

Server response for the TurntableCalibration task.

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tOutput: MF.V3.Descriptors.Calibration.Turntable = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"fullname": "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error", "modulename": "three.MF.V3.Tasks.TurntableCalibration", "qualname": "TurntableCalibration.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings": {"fullname": "three.MF.V3.Tasks.UpdateSettings", "modulename": "three.MF.V3.Tasks.UpdateSettings", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings", "kind": "class", "doc": "

*\nUpdate scanner settings.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UpdateSettings",\n"Input":{\n"camera":{\n"analogGain":256,\n"digitalGain":320,\n"exposure":18000\n}\n}\n}\n}\n
\n
\n\n
\n

Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UpdateSettings",\n"Input":{\n"camera":{\n"analogGain":256,\n"digitalGain":320,\n"exposure":18000\n}\n},\n"Output":{\n"camera":{\n"analogGain":{"default":512.0,"max":1024.0,"min":256.0,"value":256.0},\n"autoExposure":{"default":false,"value":false},\n"digitalGain":{"default":256,"max":65536,"min":256,"value":320},\n"exposure":{"default":27000,"max":90000,"min":9000,"value":18000},\n},\n"projector":{\n"brightness":{"default":0.5,"max":1.0,"min":0.0,"value":0.800000011920929},\n"on":{"default":false,"value":true}\n},\n"turntable":{\n"scans":{"default":8,"max":24,"min":1,"value":3},\n"sweep":{"default":360,"max":360,"min":5,"value":90},\n"use":{"default":true,"value":true}\n},\n"capture":{\n"quality":{"default":"Medium","value":"Medium"},\n"texture":{"default":true,"value":true}\n},\n"i18n":{\n"language":{"default":"en","value":"en"}\n},\n"style":{\n"theme":{"default":"Dark","value":"Dark"}\n},\n"viewer":{\n"textureOpacity":{"default":0.5,"max":1.0,"min":0.0,"value":1.0}\n}\n},\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request", "kind": "class", "doc": "

Client request for the UpdateSettings task.

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str, Input: MF.V3.Settings.Scanner.Scanner)"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Request.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response", "kind": "class", "doc": "

Server response for the UpdateSettings task.

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tInput: MF.V3.Settings.Scanner.Scanner,\tOutput: MF.V3.Descriptors.Settings.Scanner.Scanner = None,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Input", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Output", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"fullname": "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error", "modulename": "three.MF.V3.Tasks.UpdateSettings", "qualname": "UpdateSettings.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject": {"fullname": "three.MF.V3.Tasks.UploadProject", "modulename": "three.MF.V3.Tasks.UploadProject", "kind": "module", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject", "kind": "class", "doc": "

*\nUpload a project to the scanner. The project must be archived in a ZIP file.

\n\n
\n

Request example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UploadProject"\n}\n}\n
\n
\n\n
\n

Buffer message from client.

\n
\n\n
\n
{\n"Buffer":{\n"Index":0,\n"Size":15682096,\n"Task":{\n"Index":1,\n"Type":"UploadProject"\n}\n}\n}\n
\n
\n\n
\n

Binary data transfer from client: The project zip file [15682096 bytes].\n Response example:

\n
\n\n
\n
{\n"Task":{\n"Index":1,\n"Type":"UploadProject"\n"State":"Completed"\n}\n}\n
\n
\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request", "kind": "class", "doc": "

Client request for the UploadProject task.

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Type: str)"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Request.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response", "kind": "class", "doc": "

Server response for the UploadProject task.

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.__init__", "kind": "function", "doc": "

\n", "signature": "(\tIndex: int,\tType: str,\tState: MF.V3.Task.TaskState = None,\tError: str = None)"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.Type", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.State", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Response.Error", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer", "kind": "class", "doc": "

Client buffer message for the UploadProject task.

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.__init__", "kind": "function", "doc": "

\n", "signature": "(Index: int, Size: int, Task: MF.V3.Task.Task)"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.Index", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.Size", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"fullname": "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task", "modulename": "three.MF.V3.Tasks.UploadProject", "qualname": "UploadProject.Buffer.Task", "kind": "variable", "doc": "

\n"}, "three.MF.V3.Three": {"fullname": "three.MF.V3.Three", "modulename": "three.MF.V3.Three", "kind": "module", "doc": "

\n"}, "three.MF.V3.Three.list_network_interfaces": {"fullname": "three.MF.V3.Three.list_network_interfaces", "modulename": "three.MF.V3.Three", "qualname": "list_network_interfaces", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_wifi": {"fullname": "three.MF.V3.Three.list_wifi", "modulename": "three.MF.V3.Three", "qualname": "list_wifi", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.connect_wifi": {"fullname": "three.MF.V3.Three.connect_wifi", "modulename": "three.MF.V3.Three", "qualname": "connect_wifi", "kind": "function", "doc": "

Connect to a wifi network.

\n", "signature": "(self, ssid: str, password: str) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.forget_wifi": {"fullname": "three.MF.V3.Three.forget_wifi", "modulename": "three.MF.V3.Three", "qualname": "forget_wifi", "kind": "function", "doc": "

Forget all wifi connections.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_settings": {"fullname": "three.MF.V3.Three.list_settings", "modulename": "three.MF.V3.Three", "qualname": "list_settings", "kind": "function", "doc": "

Get scanner settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.push_settings": {"fullname": "three.MF.V3.Three.push_settings", "modulename": "three.MF.V3.Three", "qualname": "push_settings", "kind": "function", "doc": "

Push the current scanner settings to the settings stack.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.pop_settings": {"fullname": "three.MF.V3.Three.pop_settings", "modulename": "three.MF.V3.Three", "qualname": "pop_settings", "kind": "function", "doc": "

Pop and restore scanner settings from the settings stack.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.update_settings": {"fullname": "three.MF.V3.Three.update_settings", "modulename": "three.MF.V3.Three", "qualname": "update_settings", "kind": "function", "doc": "

Update scanner settings.

\n", "signature": "(\tself,\tadvanced: MF.V3.Settings.Advanced.Advanced = None,\tcamera: MF.V3.Settings.Camera.Camera = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\ti18n: MF.V3.Settings.I18n.I18n = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tstyle: MF.V3.Settings.Style.Style = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\ttutorials: MF.V3.Settings.Tutorials.Tutorials = None,\tviewer: MF.V3.Settings.Viewer.Viewer = None,\tsoftware: MF.V3.Settings.Software.Software = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_projects": {"fullname": "three.MF.V3.Three.list_projects", "modulename": "three.MF.V3.Three", "qualname": "list_projects", "kind": "function", "doc": "

List all projects.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.download_project": {"fullname": "three.MF.V3.Three.download_project", "modulename": "three.MF.V3.Three", "qualname": "download_project", "kind": "function", "doc": "

Download a project from the scanner.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.upload_project": {"fullname": "three.MF.V3.Three.upload_project", "modulename": "three.MF.V3.Three", "qualname": "upload_project", "kind": "function", "doc": "

Upload a project to the scanner.

\n", "signature": "(self, buffer: bytes) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.new_project": {"fullname": "three.MF.V3.Three.new_project", "modulename": "three.MF.V3.Three", "qualname": "new_project", "kind": "function", "doc": "

Create a new project.

\n", "signature": "(self, Input: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.open_project": {"fullname": "three.MF.V3.Three.open_project", "modulename": "three.MF.V3.Three", "qualname": "open_project", "kind": "function", "doc": "

Open an existing project.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.clear_settings": {"fullname": "three.MF.V3.Three.clear_settings", "modulename": "three.MF.V3.Three", "qualname": "clear_settings", "kind": "function", "doc": "

Clear scanner settings and restore the default values.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.close_project": {"fullname": "three.MF.V3.Three.close_project", "modulename": "three.MF.V3.Three", "qualname": "close_project", "kind": "function", "doc": "

Close the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.copy_groups": {"fullname": "three.MF.V3.Three.copy_groups", "modulename": "three.MF.V3.Three", "qualname": "copy_groups", "kind": "function", "doc": "

Copy a set of scan groups in the current open project.

\n", "signature": "(\tself,\tsourceIndexes: List[int] = None,\ttargetIndex: int = None,\tchildPosition: int = None,\tnameSuffix: str = None,\tenumerate: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.remove_projects": {"fullname": "three.MF.V3.Three.remove_projects", "modulename": "three.MF.V3.Three", "qualname": "remove_projects", "kind": "function", "doc": "

Remove selected projects.

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_groups": {"fullname": "three.MF.V3.Three.list_groups", "modulename": "three.MF.V3.Three", "qualname": "list_groups", "kind": "function", "doc": "

List the scan groups in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_scans": {"fullname": "three.MF.V3.Three.list_scans", "modulename": "three.MF.V3.Three", "qualname": "list_scans", "kind": "function", "doc": "

List the scans in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.scan_data": {"fullname": "three.MF.V3.Three.scan_data", "modulename": "three.MF.V3.Three", "qualname": "scan_data", "kind": "function", "doc": "

Download the raw scan data for a scan in the current open project.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: List[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: List[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_project": {"fullname": "three.MF.V3.Three.set_project", "modulename": "three.MF.V3.Three", "qualname": "set_project", "kind": "function", "doc": "

Apply settings to the current open project.

\n", "signature": "(self, index: int = None, name: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_group": {"fullname": "three.MF.V3.Three.set_group", "modulename": "three.MF.V3.Three", "qualname": "set_group", "kind": "function", "doc": "

Set scan group properties.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.new_group": {"fullname": "three.MF.V3.Three.new_group", "modulename": "three.MF.V3.Three", "qualname": "new_group", "kind": "function", "doc": "

Create a new scan group.

\n", "signature": "(\tself,\tparentIndex: int = None,\tbaseName: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.move_group": {"fullname": "three.MF.V3.Three.move_group", "modulename": "three.MF.V3.Three", "qualname": "move_group", "kind": "function", "doc": "

Move a scan group.

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.factory_reset": {"fullname": "three.MF.V3.Three.factory_reset", "modulename": "three.MF.V3.Three", "qualname": "factory_reset", "kind": "function", "doc": "

Reset the scanner to factory settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.flatten_group": {"fullname": "three.MF.V3.Three.flatten_group", "modulename": "three.MF.V3.Three", "qualname": "flatten_group", "kind": "function", "doc": "

Flatten a scan group such that it only consists of single scans.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.split_group": {"fullname": "three.MF.V3.Three.split_group", "modulename": "three.MF.V3.Three", "qualname": "split_group", "kind": "function", "doc": "

Split a scan group (ie. move its subgroups to its parent group).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.transform_group": {"fullname": "three.MF.V3.Three.transform_group", "modulename": "three.MF.V3.Three", "qualname": "transform_group", "kind": "function", "doc": "

Apply a rigid transformation to a group.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: List[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: List[float] = None,\ttranslation: List[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.remove_groups": {"fullname": "three.MF.V3.Three.remove_groups", "modulename": "three.MF.V3.Three", "qualname": "remove_groups", "kind": "function", "doc": "

Remove selected scan groups.

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.bounding_box": {"fullname": "three.MF.V3.Three.bounding_box", "modulename": "three.MF.V3.Three", "qualname": "bounding_box", "kind": "function", "doc": "

Get the bounding box of a set of scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection,\taxisAligned: bool) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.align": {"fullname": "three.MF.V3.Three.align", "modulename": "three.MF.V3.Three", "qualname": "align", "kind": "function", "doc": "

Align two scan groups.

\n", "signature": "(\tself,\tsource: int,\ttarget: int,\trough: MF.V3.Settings.Align.Align.Rough = None,\tfine: MF.V3.Settings.Align.Align.Fine = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.smooth": {"fullname": "three.MF.V3.Three.smooth", "modulename": "three.MF.V3.Three", "qualname": "smooth", "kind": "function", "doc": "

Smooth a set of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttaubin: MF.V3.Settings.Smooth.Smooth.Taubin = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.heat_map": {"fullname": "three.MF.V3.Three.heat_map", "modulename": "three.MF.V3.Three", "qualname": "heat_map", "kind": "function", "doc": "

Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.

\n", "signature": "(\tself,\tsources: List[int] = None,\ttargets: List[int] = None,\toutlierDistance: float = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.merge": {"fullname": "three.MF.V3.Three.merge", "modulename": "three.MF.V3.Three", "qualname": "merge", "kind": "function", "doc": "

Merge two or more scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\tremesh: MF.V3.Settings.Merge.Merge.Remesh = None,\tsimplify: MF.V3.Settings.Merge.Merge.Simplify = None,\ttexturize: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.merge_data": {"fullname": "three.MF.V3.Three.merge_data", "modulename": "three.MF.V3.Three", "qualname": "merge_data", "kind": "function", "doc": "

Download the raw scan data for the current merge process.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: List[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: List[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.add_merge_to_project": {"fullname": "three.MF.V3.Three.add_merge_to_project", "modulename": "three.MF.V3.Three", "qualname": "add_merge_to_project", "kind": "function", "doc": "

Add a merged scan to the current project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.import_file": {"fullname": "three.MF.V3.Three.import_file", "modulename": "three.MF.V3.Three", "qualname": "import_file", "kind": "function", "doc": "

Import a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file.

\n", "signature": "(\tself,\tname: str = None,\tscale: float = None,\tunit: MF.V3.Settings.Import.Import.Unit = None,\tcenter: bool = None,\tgroupIndex: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_export_formats": {"fullname": "three.MF.V3.Three.list_export_formats", "modulename": "three.MF.V3.Three", "qualname": "list_export_formats", "kind": "function", "doc": "

List all export formats.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export": {"fullname": "three.MF.V3.Three.export", "modulename": "three.MF.V3.Three", "qualname": "export", "kind": "function", "doc": "

Export a group of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_heat_map": {"fullname": "three.MF.V3.Three.export_heat_map", "modulename": "three.MF.V3.Three", "qualname": "export_heat_map", "kind": "function", "doc": "

Export a mesh with vertex colors generated by the 'HeatMap' task.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_merge": {"fullname": "three.MF.V3.Three.export_merge", "modulename": "three.MF.V3.Three", "qualname": "export_merge", "kind": "function", "doc": "

Export a merged scan.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_logs": {"fullname": "three.MF.V3.Three.export_logs", "modulename": "three.MF.V3.Three", "qualname": "export_logs", "kind": "function", "doc": "

Export scanner logs.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.export_factory_calibration_logs": {"fullname": "three.MF.V3.Three.export_factory_calibration_logs", "modulename": "three.MF.V3.Three", "qualname": "export_factory_calibration_logs", "kind": "function", "doc": "

Export factory calibration logs.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.has_cameras": {"fullname": "three.MF.V3.Three.has_cameras", "modulename": "three.MF.V3.Three", "qualname": "has_cameras", "kind": "function", "doc": "

Check if the scanner has working cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.has_projector": {"fullname": "three.MF.V3.Three.has_projector", "modulename": "three.MF.V3.Three", "qualname": "has_projector", "kind": "function", "doc": "

Check if the scanner has a working projector.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.has_turntable": {"fullname": "three.MF.V3.Three.has_turntable", "modulename": "three.MF.V3.Three", "qualname": "has_turntable", "kind": "function", "doc": "

Check if the scanner is connected to a working turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.system_info": {"fullname": "three.MF.V3.Three.system_info", "modulename": "three.MF.V3.Three", "qualname": "system_info", "kind": "function", "doc": "

Get system information.

\n", "signature": "(\tself,\tupdateMajor: bool = None,\tupdateNightly: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.camera_calibration": {"fullname": "three.MF.V3.Three.camera_calibration", "modulename": "three.MF.V3.Three", "qualname": "camera_calibration", "kind": "function", "doc": "

Get the camera calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.turntable_calibration": {"fullname": "three.MF.V3.Three.turntable_calibration", "modulename": "three.MF.V3.Three", "qualname": "turntable_calibration", "kind": "function", "doc": "

Get the turntable calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.calibration_capture_targets": {"fullname": "three.MF.V3.Three.calibration_capture_targets", "modulename": "three.MF.V3.Three", "qualname": "calibration_capture_targets", "kind": "function", "doc": "

Get the calibration capture target for each camera calibration capture.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.calibrate_cameras": {"fullname": "three.MF.V3.Three.calibrate_cameras", "modulename": "three.MF.V3.Three", "qualname": "calibrate_cameras", "kind": "function", "doc": "

Calibrate the cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.calibrate_turntable": {"fullname": "three.MF.V3.Three.calibrate_turntable", "modulename": "three.MF.V3.Three", "qualname": "calibrate_turntable", "kind": "function", "doc": "

Calibrate the turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.detect_calibration_card": {"fullname": "three.MF.V3.Three.detect_calibration_card", "modulename": "three.MF.V3.Three", "qualname": "detect_calibration_card", "kind": "function", "doc": "

Detect the calibration card on one or both cameras.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.restore_factory_calibration": {"fullname": "three.MF.V3.Three.restore_factory_calibration", "modulename": "three.MF.V3.Three", "qualname": "restore_factory_calibration", "kind": "function", "doc": "

Restore factory calibration.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.start_video": {"fullname": "three.MF.V3.Three.start_video", "modulename": "three.MF.V3.Three", "qualname": "start_video", "kind": "function", "doc": "

Start the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.stop_video": {"fullname": "three.MF.V3.Three.stop_video", "modulename": "three.MF.V3.Three", "qualname": "stop_video", "kind": "function", "doc": "

Stop the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_cameras": {"fullname": "three.MF.V3.Three.set_cameras", "modulename": "three.MF.V3.Three", "qualname": "set_cameras", "kind": "function", "doc": "

Apply camera settings to one or both cameras.

\n", "signature": "(\tself,\tselection: List[int] = None,\tautoExposure: bool = None,\texposure: int = None,\tanalogGain: float = None,\tdigitalGain: int = None,\tfocus: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_projector": {"fullname": "three.MF.V3.Three.set_projector", "modulename": "three.MF.V3.Three", "qualname": "set_projector", "kind": "function", "doc": "

Apply projector settings.

\n", "signature": "(\tself,\ton: bool = None,\tbrightness: float = None,\tpattern: MF.V3.Settings.Projector.Projector.Pattern = None,\timage: MF.V3.Settings.Projector.Projector.Image = None,\tcolor: List[float] = None,\tbuffer: bytes = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.auto_focus": {"fullname": "three.MF.V3.Three.auto_focus", "modulename": "three.MF.V3.Three", "qualname": "auto_focus", "kind": "function", "doc": "

Auto focus one or both cameras.

\n", "signature": "(\tself,\tapplyAll: bool,\tcameras: List[MF.V3.Settings.AutoFocus.AutoFocus.Camera] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.rotate_turntable": {"fullname": "three.MF.V3.Three.rotate_turntable", "modulename": "three.MF.V3.Three", "qualname": "rotate_turntable", "kind": "function", "doc": "

Rotate the turntable.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.new_scan": {"fullname": "three.MF.V3.Three.new_scan", "modulename": "three.MF.V3.Three", "qualname": "new_scan", "kind": "function", "doc": "

Capture a new scan.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.capture_image": {"fullname": "three.MF.V3.Three.capture_image", "modulename": "three.MF.V3.Three", "qualname": "capture_image", "kind": "function", "doc": "

Capture a single Image.

\n", "signature": "(\tself,\tselection: List[int] = None,\tcodec: MF.V3.Settings.CaptureImage.CaptureImage.Codec = None,\tgrayscale: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.depth_map": {"fullname": "three.MF.V3.Three.depth_map", "modulename": "three.MF.V3.Three", "qualname": "depth_map", "kind": "function", "doc": "

Capture a depth map.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.reboot": {"fullname": "three.MF.V3.Three.reboot", "modulename": "three.MF.V3.Three", "qualname": "reboot", "kind": "function", "doc": "

Reboot the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.shutdown": {"fullname": "three.MF.V3.Three.shutdown", "modulename": "three.MF.V3.Three", "qualname": "shutdown", "kind": "function", "doc": "

Shutdown the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.get_protocol_info": {"fullname": "three.MF.V3.Three.get_protocol_info", "modulename": "three.MF.V3.Three", "qualname": "get_protocol_info", "kind": "function", "doc": "

Get the desktop-processing protocol version and capabilities.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.set_processing_devices": {"fullname": "three.MF.V3.Three.set_processing_devices", "modulename": "three.MF.V3.Three", "qualname": "set_processing_devices", "kind": "function", "doc": "

Select the scan processing devices (server and/or client processing).

\n", "signature": "(self, Input: List[bool] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.connect_scanner": {"fullname": "three.MF.V3.Three.connect_scanner", "modulename": "three.MF.V3.Three", "qualname": "connect_scanner", "kind": "function", "doc": "

Connect the desktop engine to a scanner (desktop engine only).

\n", "signature": "(self, Input: str) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.disconnect_scanner": {"fullname": "three.MF.V3.Three.disconnect_scanner", "modulename": "three.MF.V3.Three", "qualname": "disconnect_scanner", "kind": "function", "doc": "

Disconnect the desktop engine from its scanner (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.get_scanner_status": {"fullname": "three.MF.V3.Three.get_scanner_status", "modulename": "three.MF.V3.Three", "qualname": "get_scanner_status", "kind": "function", "doc": "

Get the desktop engine's scanner connection status (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.list_scanner_projects": {"fullname": "three.MF.V3.Three.list_scanner_projects", "modulename": "three.MF.V3.Three", "qualname": "list_scanner_projects", "kind": "function", "doc": "

List the projects on the connected scanner (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.push_project": {"fullname": "three.MF.V3.Three.push_project", "modulename": "three.MF.V3.Three", "qualname": "push_project", "kind": "function", "doc": "

Copy a local project to the connected scanner (desktop engine only).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.pull_project": {"fullname": "three.MF.V3.Three.pull_project", "modulename": "three.MF.V3.Three", "qualname": "pull_project", "kind": "function", "doc": "

Copy a project from the connected scanner into the local workspace (desktop engine only).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.remove_scanner_projects": {"fullname": "three.MF.V3.Three.remove_scanner_projects", "modulename": "three.MF.V3.Three", "qualname": "remove_scanner_projects", "kind": "function", "doc": "

Remove projects on the connected scanner (desktop engine only).

\n", "signature": "(self, Input: List[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.download_scanner_project": {"fullname": "three.MF.V3.Three.download_scanner_project", "modulename": "three.MF.V3.Three", "qualname": "download_scanner_project", "kind": "function", "doc": "

Download a project archive from the connected scanner (desktop engine only).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.storage_info": {"fullname": "three.MF.V3.Three.storage_info", "modulename": "three.MF.V3.Three", "qualname": "storage_info", "kind": "function", "doc": "

Get the local and scanner storage space (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.MF.V3.Three.discover_scanners": {"fullname": "three.MF.V3.Three.discover_scanners", "modulename": "three.MF.V3.Three", "qualname": "discover_scanners", "kind": "function", "doc": "

Discover scanners on the local network (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner": {"fullname": "three.scanner", "modulename": "three.scanner", "kind": "module", "doc": "

\n"}, "three.scanner.Scanner": {"fullname": "three.scanner.Scanner", "modulename": "three.scanner", "qualname": "Scanner", "kind": "class", "doc": "

Main class to manage and communicate with the Matter and Form THREE 3D Scanner via websocket.

\n\n

Attributes:\n * OnTask (Optional[Callable[[Task], None]]): Callback for any task related messages, default is None. Will fire for task complete, progress, and error.\n * OnMessage (Optional[Callable[[str], None]]): Callback function to handle messages, default is None. Messages are any calls related to the system that are not tasks or buffers. Eg. {\"Message\":{\"HasTurntable\":true}}\n * OnBuffer (Optional[Callable[[Any, bytes], None]]): Callback Function to handle buffer data, default is None. Buffers can be image or scan data. These are binary formats that are sent separately from tasks. Buffers will contain a header that describes the buffer data size. Please note that websocket buffers are limited in size and need to be sent in chunks.

\n"}, "three.scanner.Scanner.__init__": {"fullname": "three.scanner.Scanner.__init__", "modulename": "three.scanner", "qualname": "Scanner.__init__", "kind": "function", "doc": "

Initializes the Scanner object.

\n\n

Args:\n * OnTask (Optional[Callable[[Task], None]]): Callback for any task related messages, default is None. Will fire for task complete, progress, and error.\n * OnMessage (Optional[Callable[[str], None]]): Callback function to handle messages, default is None. Messages are any calls related to the system that are not tasks or buffers. Eg. {\"Message\":{\"HasTurntable\":true}}\n * OnBuffer (Optional[Callable[[Any, bytes], None]]): Callback Function to handle buffer data, default is None. Buffers can be image or scan data. These are binary formats that are sent separately from tasks. Buffers will contain a header that describes the buffer data size. Please note that websocket buffers are limited in size and need to be sent in chunks.

\n", "signature": "(\tOnTask: Callable[[MF.V3.Task.Task], NoneType] | None = None,\tOnMessage: Callable[[str], NoneType] | None = None,\tOnBuffer: Callable[[Any, bytes], NoneType] | None = None)"}, "three.scanner.Scanner.OnTask": {"fullname": "three.scanner.Scanner.OnTask", "modulename": "three.scanner", "qualname": "Scanner.OnTask", "kind": "variable", "doc": "

\n"}, "three.scanner.Scanner.OnMessage": {"fullname": "three.scanner.Scanner.OnMessage", "modulename": "three.scanner", "qualname": "Scanner.OnMessage", "kind": "variable", "doc": "

\n"}, "three.scanner.Scanner.OnBuffer": {"fullname": "three.scanner.Scanner.OnBuffer", "modulename": "three.scanner", "qualname": "Scanner.OnBuffer", "kind": "variable", "doc": "

\n"}, "three.scanner.Scanner.Connect": {"fullname": "three.scanner.Scanner.Connect", "modulename": "three.scanner", "qualname": "Scanner.Connect", "kind": "function", "doc": "

Attempts to connect to the scanner using the specified URI and timeout.

\n\n

Args:\n * URI (str): The URI of the websocket server.\n * timeoutSec (int): Timeout in seconds, default is 5.

\n\n

Returns:\n bool: True if connection is successful, raises Exception otherwise.

\n\n

Raises:\n Exception: If connection fails within the timeout or due to an error.

\n", "signature": "(self, URI: str, timeoutSec=5) -> bool:", "funcdef": "def"}, "three.scanner.Scanner.Disconnect": {"fullname": "three.scanner.Scanner.Disconnect", "modulename": "three.scanner", "qualname": "Scanner.Disconnect", "kind": "function", "doc": "

Close the websocket connection.

\n", "signature": "(self) -> None:", "funcdef": "def"}, "three.scanner.Scanner.IsConnected": {"fullname": "three.scanner.Scanner.IsConnected", "modulename": "three.scanner", "qualname": "Scanner.IsConnected", "kind": "function", "doc": "

Checks if the scanner is currently connected.

\n\n

Returns:\n bool: True if connected, False otherwise.

\n", "signature": "(self) -> bool:", "funcdef": "def"}, "three.scanner.Scanner.SendTask": {"fullname": "three.scanner.Scanner.SendTask", "modulename": "three.scanner", "qualname": "Scanner.SendTask", "kind": "function", "doc": "

Sends a task to the scanner.\nTasks are general control requests for the scanner. (eg. Camera exposure, or Get Image)

\n\n

Creates a task, serializes it, and sends it via the websocket.

\n\n

Args:\n * task (Task): The task to send.\n * buffer (bytes): The buffer data to send, default is None.

\n\n

Returns:\n Any: The task object that was sent.

\n\n

Raises:\n AssertionError: If the connection is not established.

\n", "signature": "(self, task, buffer: bytes = None) -> Any:", "funcdef": "def"}, "three.scanner.Scanner.add_merge_to_project": {"fullname": "three.scanner.Scanner.add_merge_to_project", "modulename": "three.scanner", "qualname": "Scanner.add_merge_to_project", "kind": "function", "doc": "

Add a merged scan to the current project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.align": {"fullname": "three.scanner.Scanner.align", "modulename": "three.scanner", "qualname": "Scanner.align", "kind": "function", "doc": "

Align two scan groups.

\n", "signature": "(\tself,\tsource: int,\ttarget: int,\trough: MF.V3.Settings.Align.Align.Rough = None,\tfine: MF.V3.Settings.Align.Align.Fine = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.auto_focus": {"fullname": "three.scanner.Scanner.auto_focus", "modulename": "three.scanner", "qualname": "Scanner.auto_focus", "kind": "function", "doc": "

Auto focus one or both cameras.

\n", "signature": "(\tself,\tapplyAll: bool,\tcameras: list[MF.V3.Settings.AutoFocus.AutoFocus.Camera] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.bounding_box": {"fullname": "three.scanner.Scanner.bounding_box", "modulename": "three.scanner", "qualname": "Scanner.bounding_box", "kind": "function", "doc": "

Get the bounding box of a set of scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection,\taxisAligned: bool) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.calibrate_cameras": {"fullname": "three.scanner.Scanner.calibrate_cameras", "modulename": "three.scanner", "qualname": "Scanner.calibrate_cameras", "kind": "function", "doc": "

Calibrate the cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.calibrate_turntable": {"fullname": "three.scanner.Scanner.calibrate_turntable", "modulename": "three.scanner", "qualname": "Scanner.calibrate_turntable", "kind": "function", "doc": "

Calibrate the turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.calibration_capture_targets": {"fullname": "three.scanner.Scanner.calibration_capture_targets", "modulename": "three.scanner", "qualname": "Scanner.calibration_capture_targets", "kind": "function", "doc": "

Get the calibration capture target for each camera calibration capture.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.camera_calibration": {"fullname": "three.scanner.Scanner.camera_calibration", "modulename": "three.scanner", "qualname": "Scanner.camera_calibration", "kind": "function", "doc": "

Get the camera calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.capture_image": {"fullname": "three.scanner.Scanner.capture_image", "modulename": "three.scanner", "qualname": "Scanner.capture_image", "kind": "function", "doc": "

Capture a single Image.

\n", "signature": "(\tself,\tselection: list[int] = None,\tcodec: MF.V3.Settings.CaptureImage.CaptureImage.Codec = None,\tgrayscale: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.clear_settings": {"fullname": "three.scanner.Scanner.clear_settings", "modulename": "three.scanner", "qualname": "Scanner.clear_settings", "kind": "function", "doc": "

Clear scanner settings and restore the default values.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.close_project": {"fullname": "three.scanner.Scanner.close_project", "modulename": "three.scanner", "qualname": "Scanner.close_project", "kind": "function", "doc": "

Close the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.connect_scanner": {"fullname": "three.scanner.Scanner.connect_scanner", "modulename": "three.scanner", "qualname": "Scanner.connect_scanner", "kind": "function", "doc": "

Connect the desktop engine to a scanner (desktop engine only).

\n", "signature": "(self, Input: str) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.connect_wifi": {"fullname": "three.scanner.Scanner.connect_wifi", "modulename": "three.scanner", "qualname": "Scanner.connect_wifi", "kind": "function", "doc": "

Connect to a wifi network.

\n", "signature": "(self, ssid: str, password: str) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.copy_groups": {"fullname": "three.scanner.Scanner.copy_groups", "modulename": "three.scanner", "qualname": "Scanner.copy_groups", "kind": "function", "doc": "

Copy a set of scan groups in the current open project.

\n", "signature": "(\tself,\tsourceIndexes: list[int] = None,\ttargetIndex: int = None,\tchildPosition: int = None,\tnameSuffix: str = None,\tenumerate: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.depth_map": {"fullname": "three.scanner.Scanner.depth_map", "modulename": "three.scanner", "qualname": "Scanner.depth_map", "kind": "function", "doc": "

Capture a depth map.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.detect_calibration_card": {"fullname": "three.scanner.Scanner.detect_calibration_card", "modulename": "three.scanner", "qualname": "Scanner.detect_calibration_card", "kind": "function", "doc": "

Detect the calibration card on one or both cameras.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.disconnect_scanner": {"fullname": "three.scanner.Scanner.disconnect_scanner", "modulename": "three.scanner", "qualname": "Scanner.disconnect_scanner", "kind": "function", "doc": "

Disconnect the desktop engine from its scanner (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.discover_scanners": {"fullname": "three.scanner.Scanner.discover_scanners", "modulename": "three.scanner", "qualname": "Scanner.discover_scanners", "kind": "function", "doc": "

Discover scanners on the local network (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.download_project": {"fullname": "three.scanner.Scanner.download_project", "modulename": "three.scanner", "qualname": "Scanner.download_project", "kind": "function", "doc": "

Download a project from the scanner.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.download_scanner_project": {"fullname": "three.scanner.Scanner.download_scanner_project", "modulename": "three.scanner", "qualname": "Scanner.download_scanner_project", "kind": "function", "doc": "

Download a project archive from the connected scanner (desktop engine only).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export": {"fullname": "three.scanner.Scanner.export", "modulename": "three.scanner", "qualname": "Scanner.export", "kind": "function", "doc": "

Export a group of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_factory_calibration_logs": {"fullname": "three.scanner.Scanner.export_factory_calibration_logs", "modulename": "three.scanner", "qualname": "Scanner.export_factory_calibration_logs", "kind": "function", "doc": "

Export factory calibration logs.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_heat_map": {"fullname": "three.scanner.Scanner.export_heat_map", "modulename": "three.scanner", "qualname": "Scanner.export_heat_map", "kind": "function", "doc": "

Export a mesh with vertex colors generated by the 'HeatMap' task.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_logs": {"fullname": "three.scanner.Scanner.export_logs", "modulename": "three.scanner", "qualname": "Scanner.export_logs", "kind": "function", "doc": "

Export scanner logs.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.export_merge": {"fullname": "three.scanner.Scanner.export_merge", "modulename": "three.scanner", "qualname": "Scanner.export_merge", "kind": "function", "doc": "

Export a merged scan.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttexture: bool = None,\tmerge: bool = None,\tformat: MF.V3.Settings.Export.Export.Format = None,\tscale: float = None,\tcolor: MF.V3.Settings.Export.Export.Color = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.factory_reset": {"fullname": "three.scanner.Scanner.factory_reset", "modulename": "three.scanner", "qualname": "Scanner.factory_reset", "kind": "function", "doc": "

Reset the scanner to factory settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.flatten_group": {"fullname": "three.scanner.Scanner.flatten_group", "modulename": "three.scanner", "qualname": "Scanner.flatten_group", "kind": "function", "doc": "

Flatten a scan group such that it only consists of single scans.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.forget_wifi": {"fullname": "three.scanner.Scanner.forget_wifi", "modulename": "three.scanner", "qualname": "Scanner.forget_wifi", "kind": "function", "doc": "

Forget all wifi connections.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.get_protocol_info": {"fullname": "three.scanner.Scanner.get_protocol_info", "modulename": "three.scanner", "qualname": "Scanner.get_protocol_info", "kind": "function", "doc": "

Get the desktop-processing protocol version and capabilities.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.get_scanner_status": {"fullname": "three.scanner.Scanner.get_scanner_status", "modulename": "three.scanner", "qualname": "Scanner.get_scanner_status", "kind": "function", "doc": "

Get the desktop engine's scanner connection status (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.has_cameras": {"fullname": "three.scanner.Scanner.has_cameras", "modulename": "three.scanner", "qualname": "Scanner.has_cameras", "kind": "function", "doc": "

Check if the scanner has working cameras.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.has_projector": {"fullname": "three.scanner.Scanner.has_projector", "modulename": "three.scanner", "qualname": "Scanner.has_projector", "kind": "function", "doc": "

Check if the scanner has a working projector.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.has_turntable": {"fullname": "three.scanner.Scanner.has_turntable", "modulename": "three.scanner", "qualname": "Scanner.has_turntable", "kind": "function", "doc": "

Check if the scanner is connected to a working turntable.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.heat_map": {"fullname": "three.scanner.Scanner.heat_map", "modulename": "three.scanner", "qualname": "Scanner.heat_map", "kind": "function", "doc": "

Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.

\n", "signature": "(\tself,\tsources: list[int] = None,\ttargets: list[int] = None,\toutlierDistance: float = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.import_file": {"fullname": "three.scanner.Scanner.import_file", "modulename": "three.scanner", "qualname": "Scanner.import_file", "kind": "function", "doc": "

Import a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file.

\n", "signature": "(\tself,\tname: str = None,\tscale: float = None,\tunit: MF.V3.Settings.Import.Import.Unit = None,\tcenter: bool = None,\tgroupIndex: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_export_formats": {"fullname": "three.scanner.Scanner.list_export_formats", "modulename": "three.scanner", "qualname": "Scanner.list_export_formats", "kind": "function", "doc": "

List all export formats.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_groups": {"fullname": "three.scanner.Scanner.list_groups", "modulename": "three.scanner", "qualname": "Scanner.list_groups", "kind": "function", "doc": "

List the scan groups in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_network_interfaces": {"fullname": "three.scanner.Scanner.list_network_interfaces", "modulename": "three.scanner", "qualname": "Scanner.list_network_interfaces", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_projects": {"fullname": "three.scanner.Scanner.list_projects", "modulename": "three.scanner", "qualname": "Scanner.list_projects", "kind": "function", "doc": "

List all projects.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_scanner_projects": {"fullname": "three.scanner.Scanner.list_scanner_projects", "modulename": "three.scanner", "qualname": "Scanner.list_scanner_projects", "kind": "function", "doc": "

List the projects on the connected scanner (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_scans": {"fullname": "three.scanner.Scanner.list_scans", "modulename": "three.scanner", "qualname": "Scanner.list_scans", "kind": "function", "doc": "

List the scans in the current open project.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_settings": {"fullname": "three.scanner.Scanner.list_settings", "modulename": "three.scanner", "qualname": "Scanner.list_settings", "kind": "function", "doc": "

Get scanner settings.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.list_wifi": {"fullname": "three.scanner.Scanner.list_wifi", "modulename": "three.scanner", "qualname": "Scanner.list_wifi", "kind": "function", "doc": "

List available wifi networks.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.merge": {"fullname": "three.scanner.Scanner.merge", "modulename": "three.scanner", "qualname": "Scanner.merge", "kind": "function", "doc": "

Merge two or more scan groups.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\tremesh: MF.V3.Settings.Merge.Merge.Remesh = None,\tsimplify: MF.V3.Settings.Merge.Merge.Simplify = None,\ttexturize: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.merge_data": {"fullname": "three.scanner.Scanner.merge_data", "modulename": "three.scanner", "qualname": "Scanner.merge_data", "kind": "function", "doc": "

Download the raw scan data for the current merge process.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: list[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: list[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.move_group": {"fullname": "three.scanner.Scanner.move_group", "modulename": "three.scanner", "qualname": "Scanner.move_group", "kind": "function", "doc": "

Move a scan group.

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.new_group": {"fullname": "three.scanner.Scanner.new_group", "modulename": "three.scanner", "qualname": "Scanner.new_group", "kind": "function", "doc": "

Create a new scan group.

\n", "signature": "(\tself,\tparentIndex: int = None,\tbaseName: str = None,\tcolor: list[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: list[float] = None,\ttranslation: list[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.new_project": {"fullname": "three.scanner.Scanner.new_project", "modulename": "three.scanner", "qualname": "Scanner.new_project", "kind": "function", "doc": "

Create a new project.

\n", "signature": "(self, Input: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.new_scan": {"fullname": "three.scanner.Scanner.new_scan", "modulename": "three.scanner", "qualname": "Scanner.new_scan", "kind": "function", "doc": "

Capture a new scan.

\n", "signature": "(\tself,\tcamera: MF.V3.Settings.Camera.Camera = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\tprocessing: MF.V3.Settings.Scan.Scan.Processing = None,\talignWithScanner: bool = None,\tcenterAtOrigin: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.open_project": {"fullname": "three.scanner.Scanner.open_project", "modulename": "three.scanner", "qualname": "Scanner.open_project", "kind": "function", "doc": "

Open an existing project.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.pop_settings": {"fullname": "three.scanner.Scanner.pop_settings", "modulename": "three.scanner", "qualname": "Scanner.pop_settings", "kind": "function", "doc": "

Pop and restore scanner settings from the settings stack.

\n", "signature": "(self, Input: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.pull_project": {"fullname": "three.scanner.Scanner.pull_project", "modulename": "three.scanner", "qualname": "Scanner.pull_project", "kind": "function", "doc": "

Copy a project from the connected scanner into the local workspace (desktop engine only).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.push_project": {"fullname": "three.scanner.Scanner.push_project", "modulename": "three.scanner", "qualname": "Scanner.push_project", "kind": "function", "doc": "

Copy a local project to the connected scanner (desktop engine only).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.push_settings": {"fullname": "three.scanner.Scanner.push_settings", "modulename": "three.scanner", "qualname": "Scanner.push_settings", "kind": "function", "doc": "

Push the current scanner settings to the settings stack.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.reboot": {"fullname": "three.scanner.Scanner.reboot", "modulename": "three.scanner", "qualname": "Scanner.reboot", "kind": "function", "doc": "

Reboot the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.remove_groups": {"fullname": "three.scanner.Scanner.remove_groups", "modulename": "three.scanner", "qualname": "Scanner.remove_groups", "kind": "function", "doc": "

Remove selected scan groups.

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.remove_projects": {"fullname": "three.scanner.Scanner.remove_projects", "modulename": "three.scanner", "qualname": "Scanner.remove_projects", "kind": "function", "doc": "

Remove selected projects.

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.remove_scanner_projects": {"fullname": "three.scanner.Scanner.remove_scanner_projects", "modulename": "three.scanner", "qualname": "Scanner.remove_scanner_projects", "kind": "function", "doc": "

Remove projects on the connected scanner (desktop engine only).

\n", "signature": "(self, Input: list[int] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.restore_factory_calibration": {"fullname": "three.scanner.Scanner.restore_factory_calibration", "modulename": "three.scanner", "qualname": "Scanner.restore_factory_calibration", "kind": "function", "doc": "

Restore factory calibration.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.rotate_turntable": {"fullname": "three.scanner.Scanner.rotate_turntable", "modulename": "three.scanner", "qualname": "Scanner.rotate_turntable", "kind": "function", "doc": "

Rotate the turntable.

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.scan_data": {"fullname": "three.scanner.Scanner.scan_data", "modulename": "three.scanner", "qualname": "Scanner.scan_data", "kind": "function", "doc": "

Download the raw scan data for a scan in the current open project.

\n", "signature": "(\tself,\tindex: int,\tmergeStep: MF.V3.Settings.ScanData.ScanData.MergeStep = None,\tbuffers: list[MF.V3.Settings.ScanData.ScanData.Buffer] = None,\tmetadata: list[MF.V3.Settings.ScanData.ScanData.Metadata] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_cameras": {"fullname": "three.scanner.Scanner.set_cameras", "modulename": "three.scanner", "qualname": "Scanner.set_cameras", "kind": "function", "doc": "

Apply camera settings to one or both cameras.

\n", "signature": "(\tself,\tselection: list[int] = None,\tautoExposure: bool = None,\texposure: int = None,\tanalogGain: float = None,\tdigitalGain: int = None,\tfocus: int = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_group": {"fullname": "three.scanner.Scanner.set_group", "modulename": "three.scanner", "qualname": "Scanner.set_group", "kind": "function", "doc": "

Set scan group properties.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: list[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: list[float] = None,\ttranslation: list[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_processing_devices": {"fullname": "three.scanner.Scanner.set_processing_devices", "modulename": "three.scanner", "qualname": "Scanner.set_processing_devices", "kind": "function", "doc": "

Select the scan processing devices (server and/or client processing).

\n", "signature": "(self, Input: list[bool] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_project": {"fullname": "three.scanner.Scanner.set_project", "modulename": "three.scanner", "qualname": "Scanner.set_project", "kind": "function", "doc": "

Apply settings to the current open project.

\n", "signature": "(self, index: int = None, name: str = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.set_projector": {"fullname": "three.scanner.Scanner.set_projector", "modulename": "three.scanner", "qualname": "Scanner.set_projector", "kind": "function", "doc": "

Apply projector settings.

\n", "signature": "(\tself,\ton: bool = None,\tbrightness: float = None,\tpattern: MF.V3.Settings.Projector.Projector.Pattern = None,\timage: MF.V3.Settings.Projector.Projector.Image = None,\tcolor: list[float] = None,\tbuffer: bytes = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.shutdown": {"fullname": "three.scanner.Scanner.shutdown", "modulename": "three.scanner", "qualname": "Scanner.shutdown", "kind": "function", "doc": "

Shutdown the scanner.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.smooth": {"fullname": "three.scanner.Scanner.smooth", "modulename": "three.scanner", "qualname": "Scanner.smooth", "kind": "function", "doc": "

Smooth a set of scans.

\n", "signature": "(\tself,\tselection: MF.V3.Settings.ScanSelection.ScanSelection = None,\ttaubin: MF.V3.Settings.Smooth.Smooth.Taubin = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.split_group": {"fullname": "three.scanner.Scanner.split_group", "modulename": "three.scanner", "qualname": "Scanner.split_group", "kind": "function", "doc": "

Split a scan group (ie. move its subgroups to its parent group).

\n", "signature": "(self, Input: int) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.start_video": {"fullname": "three.scanner.Scanner.start_video", "modulename": "three.scanner", "qualname": "Scanner.start_video", "kind": "function", "doc": "

Start the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.stop_video": {"fullname": "three.scanner.Scanner.stop_video", "modulename": "three.scanner", "qualname": "Scanner.stop_video", "kind": "function", "doc": "

Stop the video stream.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.storage_info": {"fullname": "three.scanner.Scanner.storage_info", "modulename": "three.scanner", "qualname": "Scanner.storage_info", "kind": "function", "doc": "

Get the local and scanner storage space (desktop engine only).

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.system_info": {"fullname": "three.scanner.Scanner.system_info", "modulename": "three.scanner", "qualname": "Scanner.system_info", "kind": "function", "doc": "

Get system information.

\n", "signature": "(\tself,\tupdateMajor: bool = None,\tupdateNightly: bool = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.transform_group": {"fullname": "three.scanner.Scanner.transform_group", "modulename": "three.scanner", "qualname": "Scanner.transform_group", "kind": "function", "doc": "

Apply a rigid transformation to a group.

\n", "signature": "(\tself,\tindex: int,\tname: str = None,\tcolor: list[float] = None,\tvisible: bool = None,\tcollapsed: bool = None,\trotation: list[float] = None,\ttranslation: list[float] = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.turntable_calibration": {"fullname": "three.scanner.Scanner.turntable_calibration", "modulename": "three.scanner", "qualname": "Scanner.turntable_calibration", "kind": "function", "doc": "

Get the turntable calibration descriptor.

\n", "signature": "(self) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.update_settings": {"fullname": "three.scanner.Scanner.update_settings", "modulename": "three.scanner", "qualname": "Scanner.update_settings", "kind": "function", "doc": "

Update scanner settings.

\n", "signature": "(\tself,\tadvanced: MF.V3.Settings.Advanced.Advanced = None,\tcamera: MF.V3.Settings.Camera.Camera = None,\tcapture: MF.V3.Settings.Capture.Capture = None,\ti18n: MF.V3.Settings.I18n.I18n = None,\tprojector: MF.V3.Settings.Projector.Projector = None,\tstyle: MF.V3.Settings.Style.Style = None,\tturntable: MF.V3.Settings.Turntable.Turntable = None,\ttutorials: MF.V3.Settings.Tutorials.Tutorials = None,\tviewer: MF.V3.Settings.Viewer.Viewer = None,\tsoftware: MF.V3.Settings.Software.Software = None) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.scanner.Scanner.upload_project": {"fullname": "three.scanner.Scanner.upload_project", "modulename": "three.scanner", "qualname": "Scanner.upload_project", "kind": "function", "doc": "

Upload a project to the scanner.

\n", "signature": "(self, buffer: bytes) -> MF.V3.Task.Task:", "funcdef": "def"}, "three.serialization": {"fullname": "three.serialization", "modulename": "three.serialization", "kind": "module", "doc": "

\n"}, "three.serialization.Serializer": {"fullname": "three.serialization.Serializer", "modulename": "three.serialization", "qualname": "Serializer", "kind": "function", "doc": "

\n", "signature": "(object, visited=None):", "funcdef": "def"}, "three.serialization.TO_JSON": {"fullname": "three.serialization.TO_JSON", "modulename": "three.serialization", "qualname": "TO_JSON", "kind": "function", "doc": "

Serialize an object into a json string.

\n\n

Args: \n object: the object to serialize.

\n\n

Returns:\n The string representing the object.

\n", "signature": "(object) -> str:", "funcdef": "def"}}, "docInfo": {"three": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 471}, "three.MF.V3.Buffer.Buffer.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 106, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Index": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Size": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Task": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Buffer.Buffer.Descriptor": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 100, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 29}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Camera": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 42}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 52}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 26}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Export.Export.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 179, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.extension": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.description": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.normals": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.colors": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.textures": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Export.Export.faces": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Image.Image.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Image.Image.type": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Import.Import.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 148, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Imported": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.imported": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Import.Import.ignored": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 91, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface.ip": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Project.Project.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 206, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Project.Project.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 107, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProtocolInfo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 31}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 48}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 101, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 67}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 136, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 7}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerStatus": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 40}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 464, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 305, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 305, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 254, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 55, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 254, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 234, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 4}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 106, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 74, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 92, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 234, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 364, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 142, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 55, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"qualname": 5, "fullname": 11, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer": {"qualname": 0, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"qualname": 1, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"qualname": 4, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"qualname": 3, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"qualname": 2, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.Software.Software.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.frontend": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Software.Software.server": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 28}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 93, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Descriptors.System.System.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.serialNumber": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.diskSpace": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.System.System.publicKey": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Transform": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Transform.Transform": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 26}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 173, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 73, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 484, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 38}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 16}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 70}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 37}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 68}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 86, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 99, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 147, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 58, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 137, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 94, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Align.Align.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 122, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 82, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.points": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 112, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.ICP": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 8}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 146, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Rough.points": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 50, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.source": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.target": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.rough": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Align.Align.fine": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 22}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.BoundingBox": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 3}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Camera.Camera.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 118, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.exposure": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Camera.Camera.focus": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Capture.Capture.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 180, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 94, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 100, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 45}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 21}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 41}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject.CopyProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 31, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Export.Export.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 192, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Export.Export.Format.ply": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.dae": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.glb": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.obj": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.stl": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 39}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 76, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.scale": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.offset": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.min": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.Color.max": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.texture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.merge": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.scale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Export.Export.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Group.Group.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 141, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.visible": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.collapsed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.Group.Group.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Group.Group.translation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 7}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.I18n.I18n.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.I18n.I18n.language": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Import.Import.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.scale": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.unit": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.center": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Import.Import.groupIndex": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Merge.Merge.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 156, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 75, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.remesh": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.simplify": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Merge.Merge.texturize": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 148, "bases": 0, "doc": 30}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 27}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Project": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Project.Project": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Project.Project.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 20}, "three.MF.V3.Settings.Project.Project.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Project.Project.name": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 160, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 67, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 81, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 84, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.on": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.brightness": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.pattern": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.image": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Projector.Projector.color": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality.Quality": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Quality.Quality.Low": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality.Quality.Medium": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Quality.Quality.High": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 44, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.RemoveVertices": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 3}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Scan.Scan.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 240, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 364, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 93}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 18}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 64}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 34}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 57}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 26}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 79, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 99, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"qualname": 6, "fullname": 11, "annotation": 0, "default_value": 11, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 23}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"qualname": 5, "fullname": 10, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.projector": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.processing": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 171, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 7}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.index": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 6}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 384, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.style": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Scanner.Scanner.software": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 56, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 19}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software.Software": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Software.Software.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 38, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software.Software.updateMajor": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Software.Software.updateNightly": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Style.Style.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style.Theme": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 4}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Style.Style.theme": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 116, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.use": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 70, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 27, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 5}, "three.MF.V3.Settings.Video.Video.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 5}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.codec": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.format": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.width": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Video.Video.height": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Viewer": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Viewer.Viewer": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi.Wifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 6}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Settings.Wifi.Wifi.password": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "three.MF.V3.Task.TaskState.Empty": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Sent": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Received": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Started": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Completed": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Cancelled": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Failed": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Dropped": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.TaskState.Disconnected": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 9, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 497}, "three.MF.V3.Task.Task.__init__": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 244, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Index": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Type": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Input": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Output": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.State": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Error": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Task.Task.Progress": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 275}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 432}, "three.MF.V3.Tasks.Align.Align.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 956}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 561}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 242}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 245}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 390}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 226}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 934}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 57, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 152, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 968}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 162}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 254}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 249}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 625}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1085}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 83, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 206}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 28}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 32}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 194}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 328}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 339}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 59, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 227}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 534}, "three.MF.V3.Tasks.Export.Export.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 282}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 432}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 323}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 412}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 108, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 165}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 295}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 155}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 239}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 222}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 175}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 176}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 178}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 95, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1135}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 488}, "three.MF.V3.Tasks.Import.Import.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 659}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 121, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 588}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 113, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 337}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 424}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 293}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 479}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 962}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 375}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 682}, "three.MF.V3.Tasks.Merge.Merge.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1959}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 309}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 119}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 137, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 306}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 251}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 153, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 571}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 228}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1001}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 41, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 138, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 334}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 335}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 974}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 154}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 216}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 137, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 474}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 315}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 157}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 185}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 2043}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 139, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 88, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 466}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 816}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 255}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 47, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 426}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 61, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 153, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 414}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 158, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 154}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 399}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 132, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 295}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 124, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 265}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 158}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 283}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 120, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 141}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 146, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 467}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 247}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 1092}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 54, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 151, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject": {"qualname": 0, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"qualname": 1, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 286}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 11}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 77, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"qualname": 2, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 12}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"qualname": 4, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"qualname": 3, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Three": {"qualname": 0, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.MF.V3.Three.list_network_interfaces": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.list_wifi": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.connect_wifi": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 8}, "three.MF.V3.Three.forget_wifi": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.list_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.push_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.MF.V3.Three.pop_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 12}, "three.MF.V3.Three.update_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 410, "bases": 0, "doc": 6}, "three.MF.V3.Three.list_projects": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.download_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.MF.V3.Three.upload_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.MF.V3.Three.new_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 7}, "three.MF.V3.Three.open_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 7}, "three.MF.V3.Three.clear_settings": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.close_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.MF.V3.Three.copy_groups": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 14}, "three.MF.V3.Three.remove_projects": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 6}, "three.MF.V3.Three.list_groups": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.MF.V3.Three.list_scans": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.scan_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 16}, "three.MF.V3.Three.set_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 10}, "three.MF.V3.Three.set_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 7}, "three.MF.V3.Three.new_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 8}, "three.MF.V3.Three.move_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.MF.V3.Three.factory_reset": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 9}, "three.MF.V3.Three.flatten_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.MF.V3.Three.split_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.MF.V3.Three.transform_group": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 10}, "three.MF.V3.Three.remove_groups": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.MF.V3.Three.bounding_box": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 72, "bases": 0, "doc": 13}, "three.MF.V3.Three.align": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 138, "bases": 0, "doc": 7}, "three.MF.V3.Three.smooth": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 8}, "three.MF.V3.Three.heat_map": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 23}, "three.MF.V3.Three.merge": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 172, "bases": 0, "doc": 9}, "three.MF.V3.Three.merge_data": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 13}, "three.MF.V3.Three.add_merge_to_project": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.import_file": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 23}, "three.MF.V3.Three.list_export_formats": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.export": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 8}, "three.MF.V3.Three.export_heat_map": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 14}, "three.MF.V3.Three.export_merge": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 7}, "three.MF.V3.Three.export_logs": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 6}, "three.MF.V3.Three.export_factory_calibration_logs": {"qualname": 4, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.has_cameras": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 10}, "three.MF.V3.Three.has_projector": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.has_turntable": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.system_info": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 6}, "three.MF.V3.Three.camera_calibration": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.MF.V3.Three.turntable_calibration": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.MF.V3.Three.calibration_capture_targets": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.calibrate_cameras": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.calibrate_turntable": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.detect_calibration_card": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 12}, "three.MF.V3.Three.restore_factory_calibration": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.start_video": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.stop_video": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.MF.V3.Three.set_cameras": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 11}, "three.MF.V3.Three.set_projector": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 194, "bases": 0, "doc": 6}, "three.MF.V3.Three.auto_focus": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 9}, "three.MF.V3.Three.rotate_turntable": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 6}, "three.MF.V3.Three.new_scan": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.MF.V3.Three.capture_image": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 7}, "three.MF.V3.Three.depth_map": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.MF.V3.Three.reboot": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.shutdown": {"qualname": 1, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.MF.V3.Three.get_protocol_info": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.MF.V3.Three.set_processing_devices": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 12}, "three.MF.V3.Three.connect_scanner": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 13}, "three.MF.V3.Three.disconnect_scanner": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.get_scanner_status": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 14}, "three.MF.V3.Three.list_scanner_projects": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.push_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 14}, "three.MF.V3.Three.pull_project": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 17}, "three.MF.V3.Three.remove_scanner_projects": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 12}, "three.MF.V3.Three.download_scanner_project": {"qualname": 3, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 14}, "three.MF.V3.Three.storage_info": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.MF.V3.Three.discover_scanners": {"qualname": 2, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.scanner": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 137}, "three.scanner.Scanner.__init__": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 133, "bases": 0, "doc": 125}, "three.scanner.Scanner.OnTask": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner.OnMessage": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner.OnBuffer": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.scanner.Scanner.Connect": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 34, "bases": 0, "doc": 68}, "three.scanner.Scanner.Disconnect": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 7}, "three.scanner.Scanner.IsConnected": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 20}, "three.scanner.Scanner.SendTask": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 36, "bases": 0, "doc": 83}, "three.scanner.Scanner.add_merge_to_project": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.align": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 138, "bases": 0, "doc": 7}, "three.scanner.Scanner.auto_focus": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 9}, "three.scanner.Scanner.bounding_box": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 72, "bases": 0, "doc": 13}, "three.scanner.Scanner.calibrate_cameras": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.calibrate_turntable": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.calibration_capture_targets": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.camera_calibration": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.scanner.Scanner.capture_image": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 115, "bases": 0, "doc": 7}, "three.scanner.Scanner.clear_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.close_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.scanner.Scanner.connect_scanner": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 13}, "three.scanner.Scanner.connect_wifi": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 49, "bases": 0, "doc": 8}, "three.scanner.Scanner.copy_groups": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 14}, "three.scanner.Scanner.depth_map": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.scanner.Scanner.detect_calibration_card": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 12}, "three.scanner.Scanner.disconnect_scanner": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.discover_scanners": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.scanner.Scanner.download_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.scanner.Scanner.download_scanner_project": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 14}, "three.scanner.Scanner.export": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 8}, "three.scanner.Scanner.export_factory_calibration_logs": {"qualname": 5, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.export_heat_map": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 14}, "three.scanner.Scanner.export_logs": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 6}, "three.scanner.Scanner.export_merge": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 208, "bases": 0, "doc": 7}, "three.scanner.Scanner.factory_reset": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 9}, "three.scanner.Scanner.flatten_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.scanner.Scanner.forget_wifi": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.get_protocol_info": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.get_scanner_status": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 14}, "three.scanner.Scanner.has_cameras": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 10}, "three.scanner.Scanner.has_projector": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.has_turntable": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.heat_map": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 96, "bases": 0, "doc": 23}, "three.scanner.Scanner.import_file": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 145, "bases": 0, "doc": 23}, "three.scanner.Scanner.list_export_formats": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.list_groups": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.scanner.Scanner.list_network_interfaces": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.list_projects": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.list_scanner_projects": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.list_scans": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 11}, "three.scanner.Scanner.list_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.list_wifi": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.merge": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 172, "bases": 0, "doc": 9}, "three.scanner.Scanner.merge_data": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 13}, "three.scanner.Scanner.move_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.scanner.Scanner.new_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 174, "bases": 0, "doc": 8}, "three.scanner.Scanner.new_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 7}, "three.scanner.Scanner.new_scan": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 261, "bases": 0, "doc": 7}, "three.scanner.Scanner.open_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 7}, "three.scanner.Scanner.pop_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 46, "bases": 0, "doc": 12}, "three.scanner.Scanner.pull_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 17}, "three.scanner.Scanner.push_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 14}, "three.scanner.Scanner.push_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 12}, "three.scanner.Scanner.reboot": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.remove_groups": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 7}, "three.scanner.Scanner.remove_projects": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 6}, "three.scanner.Scanner.remove_scanner_projects": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 12}, "three.scanner.Scanner.restore_factory_calibration": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.rotate_turntable": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 6}, "three.scanner.Scanner.scan_data": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 182, "bases": 0, "doc": 16}, "three.scanner.Scanner.set_cameras": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 144, "bases": 0, "doc": 11}, "three.scanner.Scanner.set_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 7}, "three.scanner.Scanner.set_processing_devices": {"qualname": 4, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 12}, "three.scanner.Scanner.set_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 63, "bases": 0, "doc": 10}, "three.scanner.Scanner.set_projector": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 194, "bases": 0, "doc": 6}, "three.scanner.Scanner.shutdown": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 6}, "three.scanner.Scanner.smooth": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 111, "bases": 0, "doc": 8}, "three.scanner.Scanner.split_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 15}, "three.scanner.Scanner.start_video": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.stop_video": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 7}, "three.scanner.Scanner.storage_info": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 13}, "three.scanner.Scanner.system_info": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 6}, "three.scanner.Scanner.transform_group": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 167, "bases": 0, "doc": 10}, "three.scanner.Scanner.turntable_calibration": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 8}, "three.scanner.Scanner.update_settings": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 410, "bases": 0, "doc": 6}, "three.scanner.Scanner.upload_project": {"qualname": 3, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 39, "bases": 0, "doc": 9}, "three.serialization": {"qualname": 0, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "three.serialization.Serializer": {"qualname": 1, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 21, "bases": 0, "doc": 3}, "three.serialization.TO_JSON": {"qualname": 2, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 28}}, "length": 2539, "save": true}, "index": {"qualname": {"root": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 351, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 98, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}}, "df": 24}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 8}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 6}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}}, "df": 8}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}}, "df": 18}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 350, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}}, "df": 180}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}}, "df": 81}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 6}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 20, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 51, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}}, "df": 5}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}}, "df": 18}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}}, "df": 15}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}}, "df": 20}}}}}}}}, "p": {"docs": {"three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}}, "df": 11}}}}}}}, "l": {"docs": {"three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.start_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Started": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}}, "df": 78}, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 78, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}}, "df": 8}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}}, "df": 14}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}}, "df": 70}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.OnTask": {"tf": 1}, "three.scanner.Scanner.OnMessage": {"tf": 1}, "three.scanner.Scanner.OnBuffer": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 124, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}}, "df": 10}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}}, "df": 4}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}}, "df": 12}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}}, "df": 24}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}}, "df": 22}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}}, "df": 6}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}}, "df": 13}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.serialization.Serializer": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.TaskState.Sent": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 10, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}}, "df": 14}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}}, "df": 14, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 10}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 11, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 25}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 23, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 10}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 13, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}}, "df": 5}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 86, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}}, "df": 24}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}}, "df": 14, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}}, "df": 8}}}}}}}, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}}, "df": 186}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}}, "df": 9}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}}, "df": 9}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}}, "df": 6}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}}, "df": 10}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}}, "df": 51}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}}, "df": 20}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}}, "df": 2}, "a": {"docs": {"three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 4}}, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}}, "df": 8}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}}, "df": 5}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}}, "df": 19}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Dropped": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}}, "df": 79, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 68, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}}, "df": 38}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 12, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}}, "df": 14}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}}, "df": 13, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 14, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Completed": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}}, "df": 13}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}}, "df": 21}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}}, "df": 4}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.close_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}}, "df": 11}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 6, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 12}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}}, "df": 14}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}}, "df": 47, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Received": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}}, "df": 351}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 556}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}}, "df": 13}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}}, "df": 9}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}}, "df": 8}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}}, "df": 10}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "b": {"5": {"6": {"5": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}}, "df": 29}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 5}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 71, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}}, "df": 16}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}}, "df": 18}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}}, "df": 18}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}}, "df": 18}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 85}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}}, "df": 49}}}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}}, "df": 17, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}}, "df": 9}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}}, "df": 9}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}}, "df": 8}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}}, "df": 1}}, "p": {"docs": {"three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 47, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 47, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 8}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}}, "df": 4}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 57}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task.Progress": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}}, "df": 29}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}}, "df": 6}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Three.pull_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}}, "df": 13}}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}}, "df": 13}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Failed": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 20}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}}, "df": 11}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}}, "df": 13}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 32, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}}, "df": 11}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 9}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}}, "df": 35, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 6}}, "u": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 66, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}}, "df": 20}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}}, "df": 5}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.move_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}, "h": {"2": {"6": {"4": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}}, "df": 28}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 21}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}}, "df": 53}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 9, "s": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {"three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}}, "df": 23}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}}, "df": 14}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}}, "df": 14}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}}, "df": 12}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}}, "df": 12}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}}, "df": 12}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}}, "df": 12}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}}, "df": 29}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}}, "df": 58}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}}, "df": 5}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.OnTask": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.OnMessage": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.OnBuffer": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}}, "df": 1}}, "docs": {"three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}}, "df": 7}}}, "v": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}}, "df": 29, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}}, "df": 6}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.upload_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 16}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}}, "df": 14}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}}, "df": 12}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 21, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}}, "df": 11}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}}, "df": 57}}}}, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}}, "df": 9}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}}, "df": 8}}}}}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}}, "df": 314}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}}, "df": 31}}}}}}}}}}}}}}, "d": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}}, "df": 12}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}}, "df": 6}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}}, "df": 22}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 61, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "l": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}}, "df": 2}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}}, "df": 1}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "z": {"docs": {"three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}}, "df": 1}}, "y": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "fullname": {"root": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 351, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"three": {"tf": 1}, "three.MF": {"tf": 1}, "three.MF.V3": {"tf": 1}, "three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Three": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.forget_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.upload_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.open_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.clear_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.close_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.copy_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scans": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.move_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.factory_reset": {"tf": 1.4142135623730951}, "three.MF.V3.Three.flatten_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.camera_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.turntable_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1.4142135623730951}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.start_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.stop_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Three.shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_protocol_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_processing_devices": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_scanner_status": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pull_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_scanner_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.storage_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.discover_scanners": {"tf": 1.4142135623730951}, "three.scanner": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.OnTask": {"tf": 1}, "three.scanner.Scanner.OnMessage": {"tf": 1}, "three.scanner.Scanner.OnBuffer": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization": {"tf": 1}, "three.serialization.Serializer": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 2539}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}}, "df": 9}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}}, "df": 9}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.State": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.Progress": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 34, "s": {"docs": {"three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 1127, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 10}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 14, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}}, "df": 5}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 88, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1.4142135623730951}}, "df": 26}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}}, "df": 14, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}}, "df": 8}}}}}}}, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}}, "df": 186}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "f": {"docs": {"three.MF": {"tf": 1}, "three.MF.V3": {"tf": 1}, "three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Three": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}}, "df": 2448}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}}, "df": 35, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 6}}, "u": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}}, "df": 1}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 69, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 21}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 26}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}}, "df": 5}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.move_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "v": {"3": {"docs": {"three.MF.V3": {"tf": 1}, "three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Task": {"tf": 1}, "three.MF.V3.Task.TaskState": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Task.Task.Type": {"tf": 1}, "three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Task.Task.Progress": {"tf": 1}, "three.MF.V3.Tasks": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Three": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}}, "df": 2447}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.4142135623730951}}, "df": 16}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}}, "df": 12}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1.4142135623730951}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 22, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}}, "df": 57}}}}, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}}, "df": 9}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer": {"tf": 1}, "three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1}}, "df": 99, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1.4142135623730951}}, "df": 27}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 8}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}}, "df": 6}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}}, "df": 8}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}}, "df": 8}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}}, "df": 6}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}}, "df": 1}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}}, "df": 20}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 350, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer.Index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Task.Task.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1}}, "df": 180}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}}, "df": 81}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 6}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 21, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 54, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}}, "df": 5}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}}, "df": 5}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.Size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1}}, "df": 18}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}}, "df": 5}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1.4142135623730951}}, "df": 17}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1.4142135623730951}}, "df": 22}}}}}}}}, "p": {"docs": {"three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 2, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}, "l": {"docs": {"three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.start_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Started": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}}, "df": 78}, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 79, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1.4142135623730951}}, "df": 9}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 73}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.OnTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.OnMessage": {"tf": 1.4142135623730951}, "three.scanner.Scanner.OnBuffer": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Disconnect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.IsConnected": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.camera_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.close_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.connect_scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.connect_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1.4142135623730951}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.discover_scanners": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_scanner_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.factory_reset": {"tf": 1.4142135623730951}, "three.scanner.Scanner.flatten_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.forget_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.get_protocol_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.get_scanner_status": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_scans": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}, "three.scanner.Scanner.open_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pull_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.reboot": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.rotate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_processing_devices": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.shutdown": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.start_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.stop_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.storage_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.turntable_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.update_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.upload_project": {"tf": 1.4142135623730951}}, "df": 127, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1.4142135623730951}}, "df": 11}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}}, "df": 12}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 10, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Settings.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}, "three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}, "three.MF.V3.Settings.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1}, "three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}, "three.MF.V3.Settings.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Settings.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}, "three.MF.V3.Settings.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Settings.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}, "three.MF.V3.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Settings.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}, "three.MF.V3.Settings.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 930}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 15, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization": {"tf": 1}, "three.serialization.Serializer": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.serialization.Serializer": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1}}, "df": 6}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.TaskState.Sent": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1}}, "df": 24}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Settings.Software": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1.4142135623730951}}, "df": 25}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1}}, "df": 9, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1}}, "df": 6}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}}, "df": 14}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1.4142135623730951}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 12, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 27}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1}, "three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1}, "three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Descriptors.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1}, "three.MF.V3.Descriptors.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1}, "three.MF.V3.Descriptors.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1}, "three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}, "three.MF.V3.Descriptors.Settings": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1}, "three.MF.V3.Descriptors.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1}, "three.MF.V3.Descriptors.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}, "three.MF.V3.Descriptors.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}}, "df": 704}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.description": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}}, "df": 10}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1}}, "df": 51}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}}, "df": 11, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 21}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}}, "df": 2}, "a": {"docs": {"three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 4}}, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}}, "df": 1}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1}}, "df": 8}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1}}, "df": 5}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 20}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Dropped": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1}}, "df": 1}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 42, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}}, "df": 4, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1}, "three.MF.V3.Settings.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}}, "df": 81, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 7}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1}, "three.MF.V3.Settings.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 70, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1.4142135623730951}}, "df": 41}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1}}, "df": 14}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}}, "df": 13, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 14, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Completed": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1.4142135623730951}}, "df": 23}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyProject": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.close_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1}}, "df": 6}}}, "e": {"docs": {"three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1}}, "df": 11}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 6, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1}}, "df": 47, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1.4142135623730951}}, "df": 7}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Received": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1}}, "df": 351}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 556}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}}, "df": 2}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}}, "df": 14}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}}, "df": 9}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1}}, "df": 8}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1}}, "df": 10}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}}, "df": 2}}, "g": {"docs": {}, "df": 0, "b": {"5": {"6": {"5": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1}, "three.MF.V3.Settings.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}}, "df": 30}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 5}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 74, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 17}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 19}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 19}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1}}, "df": 8}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1}, "three.MF.V3.Task.Task.Error": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1}}, "df": 85}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}}, "df": 49}}}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}}, "df": 17, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1}}, "df": 9}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1}}, "df": 9}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1}}, "df": 8}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1}}, "df": 1}}, "p": {"docs": {"three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Settings.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 49, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Settings.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 49, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 8}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 57}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task.Progress": {"tf": 1}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1}}, "df": 29}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1}}, "df": 6}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Three.pull_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Failed": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 6, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 20}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.format": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1.4142135623730951}}, "df": 12}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1}}, "df": 13}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}}, "df": 1}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 2, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Settings.Group": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 33, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}}, "df": 11}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 9}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 4, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}, "h": {"2": {"6": {"4": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1}}, "df": 9}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 4, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1.4142135623730951}}, "df": 31}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 23}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1}}, "df": 53}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1}}, "df": 10, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.Network": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}}, "df": 15, "s": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}}, "df": 9}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}, "w": {"docs": {"three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 6, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1.4142135623730951}}, "df": 25}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1}}, "df": 12}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1}}, "df": 1}}}, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}}, "df": 4}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1}}, "df": 29}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.Output": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1}}, "df": 58}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1}}, "df": 5}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.OnTask": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.OnMessage": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.OnBuffer": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}}, "df": 1}}, "docs": {"three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1}}, "df": 7}}}, "v": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1}}, "df": 29, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1}}, "df": 7}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1}}, "df": 6}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1.4142135623730951}}, "df": 15}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Three.upload_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1.4142135623730951}}, "df": 17}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1}}, "df": 8}}}}}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1}}, "df": 316}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1}}, "df": 31}}}}}}}}}}}}}}, "d": {"docs": {"three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1.4142135623730951}}, "df": 13}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1}}, "df": 6}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1.4142135623730951}}, "df": 24}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 63, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "l": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}}, "df": 2}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1}}, "df": 1}}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 9}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}}, "df": 1}}}, "a": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}}, "df": 1}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}, "x": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1}}, "df": 1, "y": {"docs": {}, "df": 0, "z": {"docs": {"three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}}, "df": 1}}}, "z": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}}, "df": 1}}, "y": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1}}, "df": 1, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "annotation": {"root": {"docs": {}, "df": 0}}, "default_value": {"root": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Received": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Started": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.4142135623730951}}, "df": 115, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 115}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}}, "df": 2}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}}, "df": 1}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}}, "df": 15}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}}, "df": 1, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 5}}}}, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}}, "df": 5}}}}, "n": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}}, "df": 1}}, "x": {"2": {"7": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Received": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Started": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.4142135623730951}}, "df": 115}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "z": {"docs": {"three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.4142135623730951}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}}, "df": 6}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.4142135623730951}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 115}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.4142135623730951}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.4142135623730951}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.4142135623730951}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.4142135623730951}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.4142135623730951}}, "df": 1}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Failed": {"tf": 1.4142135623730951}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1}}, "df": 5}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1}}, "df": 12}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.4142135623730951}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.4142135623730951}}, "df": 1}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.4142135623730951}}, "df": 1}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.4142135623730951}}, "df": 5, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1}}, "df": 16}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.TaskState.Empty": {"tf": 1}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1}, "three.MF.V3.Task.TaskState.Received": {"tf": 1}, "three.MF.V3.Task.TaskState.Started": {"tf": 1}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1}}, "df": 9}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.4142135623730951}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.4142135623730951}}, "df": 1}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Started": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.TaskState.Sent": {"tf": 1.4142135623730951}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1}}, "df": 3}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.4142135623730951}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1}}, "df": 4}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1}}, "df": 5}}}, "v": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.4142135623730951}}, "df": 2}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.4142135623730951}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1}}, "df": 8}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Completed": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.4142135623730951}}, "df": 1}}}}, "w": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.4142135623730951}}, "df": 2}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Received": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "b": {"5": {"6": {"5": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.4142135623730951}}, "df": 1}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.4142135623730951}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.4142135623730951}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.4142135623730951}}, "df": 1}}, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1}}, "df": 8}}}}}, "g": {"docs": {}, "df": 0, "r": {"8": {"8": {"8": {"docs": {"three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.4142135623730951}}, "df": 1}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Dropped": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1}}, "df": 2}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.4142135623730951}}, "df": 1}}, "docs": {}, "df": 0}}}}, "z": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.4142135623730951}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.4142135623730951}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "h": {"2": {"6": {"4": {"docs": {"three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.4142135623730951}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.4142135623730951}}, "df": 2}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "y": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "signature": {"root": {"1": {"4": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "docs": {}, "df": 0}, "3": {"9": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 2}, "three.MF.V3.Task.Task.__init__": {"tf": 3.4641016151377544}}, "df": 2}, "docs": {}, "df": 0}, "5": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}, "6": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "x": {"6": {"4": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "docs": {}, "df": 0}}}}}}}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 8.717797887081348}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 9.16515138991168}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 5.5677643628300215}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 10.14889156509222}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 12.083045973594572}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 8.18535277187245}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 11}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 8.660254037844387}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 8.18535277187245}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 7.416198487095663}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 6.855654600401044}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 13.076696830622021}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 9.38083151964686}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 5.5677643628300215}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 9.1104335791443}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 10.583005244258363}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 11.224972160321824}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 7.810249675906654}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 8.48528137423857}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 6.928203230275509}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 19.339079605813716}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 15.684387141358123}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 15.684387141358123}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 14.317821063276353}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 6.708203932499369}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 14.317821063276353}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 13.74772708486752}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 9.273618495495704}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 8.717797887081348}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 13.74772708486752}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 7.3484692283495345}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 17.146428199482248}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 6.4031242374328485}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 10.723805294763608}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 6.708203932499369}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 6.4031242374328485}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 6}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 8.366600265340756}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 8.717797887081348}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 7.416198487095663}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 11.874342087037917}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 7.54983443527075}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 7.810249675906654}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 19.849433241279208}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 7.681145747868608}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 7}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 9.695359714832659}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 7}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 8.426149773176359}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 9.055385138137417}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 11.045361017187261}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 7}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 4.242640687119285}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 10}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 8.306623862918075}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 9.695359714832659}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 10.908712114635714}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 11.090536506409418}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 7.54983443527075}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 6.164414002968976}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 12.24744871391589}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 8.831760866327848}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 9.16515138991168}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 5.0990195135927845}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 12.569805089976535}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 8}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 7.681145747868608}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 10.14889156509222}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 11.313708498984761}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 10.14889156509222}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 7.874007874011811}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 11.135528725660043}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 5.656854249492381}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 11.489125293076057}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 7.416198487095663}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 8.12403840463596}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 8.306623862918075}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 6}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 4.795831523312719}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 14.035668847618199}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 17.233687939614086}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 7}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 7.3484692283495345}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 8.06225774829855}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 9}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 11.832159566199232}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 7.54983443527075}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 17.72004514666935}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 8.602325267042627}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 6.855654600401044}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 5.656854249492381}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 6.48074069840786}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 9.848857801796104}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 7.615773105863909}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 4.795831523312719}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 9.38083151964686}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 4.242640687119285}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Task.Task.__init__": {"tf": 12.922847983320086}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 9.643650760992955}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 6.855654600401044}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 11.180339887498949}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 6.928203230275509}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 9.433981132056603}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 10.099504938362077}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 8.888194417315589}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 10}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 9.643650760992955}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 8.48528137423857}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 10.63014581273465}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 11.135528725660043}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 11.224972160321824}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 10.63014581273465}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 10.908712114635714}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 8.54400374531753}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 10.677078252031311}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 8.48528137423857}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 6.244997998398398}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 11.224972160321824}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 11.40175425099138}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 10.44030650891055}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 10.099504938362077}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 9.9498743710662}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 7.280109889280518}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 10.954451150103322}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 9.746794344808963}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 11.135528725660043}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 8}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 6.324555320336759}, "three.MF.V3.Three.list_network_interfaces": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_wifi": {"tf": 4.898979485566356}, "three.MF.V3.Three.connect_wifi": {"tf": 6.324555320336759}, "three.MF.V3.Three.forget_wifi": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_settings": {"tf": 4.898979485566356}, "three.MF.V3.Three.push_settings": {"tf": 4.898979485566356}, "three.MF.V3.Three.pop_settings": {"tf": 6.164414002968976}, "three.MF.V3.Three.update_settings": {"tf": 18.303005217723125}, "three.MF.V3.Three.list_projects": {"tf": 4.898979485566356}, "three.MF.V3.Three.download_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.upload_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.new_project": {"tf": 6.164414002968976}, "three.MF.V3.Three.open_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.clear_settings": {"tf": 4.898979485566356}, "three.MF.V3.Three.close_project": {"tf": 4.898979485566356}, "three.MF.V3.Three.copy_groups": {"tf": 10.246950765959598}, "three.MF.V3.Three.remove_projects": {"tf": 6.557438524302}, "three.MF.V3.Three.list_groups": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_scans": {"tf": 4.898979485566356}, "three.MF.V3.Three.scan_data": {"tf": 12.206555615733702}, "three.MF.V3.Three.set_project": {"tf": 7.211102550927978}, "three.MF.V3.Three.set_group": {"tf": 11.789826122551595}, "three.MF.V3.Three.new_group": {"tf": 12.041594578792296}, "three.MF.V3.Three.move_group": {"tf": 6.557438524302}, "three.MF.V3.Three.factory_reset": {"tf": 4.898979485566356}, "three.MF.V3.Three.flatten_group": {"tf": 5.656854249492381}, "three.MF.V3.Three.split_group": {"tf": 5.656854249492381}, "three.MF.V3.Three.transform_group": {"tf": 11.789826122551595}, "three.MF.V3.Three.remove_groups": {"tf": 6.557438524302}, "three.MF.V3.Three.bounding_box": {"tf": 7.681145747868608}, "three.MF.V3.Three.align": {"tf": 10.63014581273465}, "three.MF.V3.Three.smooth": {"tf": 9.539392014169456}, "three.MF.V3.Three.heat_map": {"tf": 8.94427190999916}, "three.MF.V3.Three.merge": {"tf": 11.874342087037917}, "three.MF.V3.Three.merge_data": {"tf": 12.206555615733702}, "three.MF.V3.Three.add_merge_to_project": {"tf": 4.898979485566356}, "three.MF.V3.Three.import_file": {"tf": 10.954451150103322}, "three.MF.V3.Three.list_export_formats": {"tf": 4.898979485566356}, "three.MF.V3.Three.export": {"tf": 13.076696830622021}, "three.MF.V3.Three.export_heat_map": {"tf": 13.076696830622021}, "three.MF.V3.Three.export_merge": {"tf": 13.076696830622021}, "three.MF.V3.Three.export_logs": {"tf": 6.164414002968976}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 4.898979485566356}, "three.MF.V3.Three.has_cameras": {"tf": 4.898979485566356}, "three.MF.V3.Three.has_projector": {"tf": 4.898979485566356}, "three.MF.V3.Three.has_turntable": {"tf": 4.898979485566356}, "three.MF.V3.Three.system_info": {"tf": 7.416198487095663}, "three.MF.V3.Three.camera_calibration": {"tf": 4.898979485566356}, "three.MF.V3.Three.turntable_calibration": {"tf": 4.898979485566356}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 4.898979485566356}, "three.MF.V3.Three.calibrate_cameras": {"tf": 4.898979485566356}, "three.MF.V3.Three.calibrate_turntable": {"tf": 4.898979485566356}, "three.MF.V3.Three.detect_calibration_card": {"tf": 5.656854249492381}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 4.898979485566356}, "three.MF.V3.Three.start_video": {"tf": 4.898979485566356}, "three.MF.V3.Three.stop_video": {"tf": 4.898979485566356}, "three.MF.V3.Three.set_cameras": {"tf": 10.954451150103322}, "three.MF.V3.Three.set_projector": {"tf": 12.649110640673518}, "three.MF.V3.Three.auto_focus": {"tf": 8.602325267042627}, "three.MF.V3.Three.rotate_turntable": {"tf": 5.656854249492381}, "three.MF.V3.Three.new_scan": {"tf": 14.628738838327793}, "three.MF.V3.Three.capture_image": {"tf": 9.746794344808963}, "three.MF.V3.Three.depth_map": {"tf": 14.628738838327793}, "three.MF.V3.Three.reboot": {"tf": 4.898979485566356}, "three.MF.V3.Three.shutdown": {"tf": 4.898979485566356}, "three.MF.V3.Three.get_protocol_info": {"tf": 4.898979485566356}, "three.MF.V3.Three.set_processing_devices": {"tf": 6.557438524302}, "three.MF.V3.Three.connect_scanner": {"tf": 5.656854249492381}, "three.MF.V3.Three.disconnect_scanner": {"tf": 4.898979485566356}, "three.MF.V3.Three.get_scanner_status": {"tf": 4.898979485566356}, "three.MF.V3.Three.list_scanner_projects": {"tf": 4.898979485566356}, "three.MF.V3.Three.push_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.pull_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 6.557438524302}, "three.MF.V3.Three.download_scanner_project": {"tf": 5.656854249492381}, "three.MF.V3.Three.storage_info": {"tf": 4.898979485566356}, "three.MF.V3.Three.discover_scanners": {"tf": 4.898979485566356}, "three.scanner.Scanner.__init__": {"tf": 10.535653752852738}, "three.scanner.Scanner.Connect": {"tf": 5.291502622129181}, "three.scanner.Scanner.Disconnect": {"tf": 3.4641016151377544}, "three.scanner.Scanner.IsConnected": {"tf": 3.4641016151377544}, "three.scanner.Scanner.SendTask": {"tf": 5.477225575051661}, "three.scanner.Scanner.add_merge_to_project": {"tf": 4.898979485566356}, "three.scanner.Scanner.align": {"tf": 10.63014581273465}, "three.scanner.Scanner.auto_focus": {"tf": 8.602325267042627}, "three.scanner.Scanner.bounding_box": {"tf": 7.681145747868608}, "three.scanner.Scanner.calibrate_cameras": {"tf": 4.898979485566356}, "three.scanner.Scanner.calibrate_turntable": {"tf": 4.898979485566356}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 4.898979485566356}, "three.scanner.Scanner.camera_calibration": {"tf": 4.898979485566356}, "three.scanner.Scanner.capture_image": {"tf": 9.746794344808963}, "three.scanner.Scanner.clear_settings": {"tf": 4.898979485566356}, "three.scanner.Scanner.close_project": {"tf": 4.898979485566356}, "three.scanner.Scanner.connect_scanner": {"tf": 5.656854249492381}, "three.scanner.Scanner.connect_wifi": {"tf": 6.324555320336759}, "three.scanner.Scanner.copy_groups": {"tf": 10.246950765959598}, "three.scanner.Scanner.depth_map": {"tf": 14.628738838327793}, "three.scanner.Scanner.detect_calibration_card": {"tf": 5.656854249492381}, "three.scanner.Scanner.disconnect_scanner": {"tf": 4.898979485566356}, "three.scanner.Scanner.discover_scanners": {"tf": 4.898979485566356}, "three.scanner.Scanner.download_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.download_scanner_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.export": {"tf": 13.076696830622021}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 4.898979485566356}, "three.scanner.Scanner.export_heat_map": {"tf": 13.076696830622021}, "three.scanner.Scanner.export_logs": {"tf": 6.164414002968976}, "three.scanner.Scanner.export_merge": {"tf": 13.076696830622021}, "three.scanner.Scanner.factory_reset": {"tf": 4.898979485566356}, "three.scanner.Scanner.flatten_group": {"tf": 5.656854249492381}, "three.scanner.Scanner.forget_wifi": {"tf": 4.898979485566356}, "three.scanner.Scanner.get_protocol_info": {"tf": 4.898979485566356}, "three.scanner.Scanner.get_scanner_status": {"tf": 4.898979485566356}, "three.scanner.Scanner.has_cameras": {"tf": 4.898979485566356}, "three.scanner.Scanner.has_projector": {"tf": 4.898979485566356}, "three.scanner.Scanner.has_turntable": {"tf": 4.898979485566356}, "three.scanner.Scanner.heat_map": {"tf": 8.94427190999916}, "three.scanner.Scanner.import_file": {"tf": 10.954451150103322}, "three.scanner.Scanner.list_export_formats": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_groups": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_network_interfaces": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_projects": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_scanner_projects": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_scans": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_settings": {"tf": 4.898979485566356}, "three.scanner.Scanner.list_wifi": {"tf": 4.898979485566356}, "three.scanner.Scanner.merge": {"tf": 11.874342087037917}, "three.scanner.Scanner.merge_data": {"tf": 12.206555615733702}, "three.scanner.Scanner.move_group": {"tf": 6.557438524302}, "three.scanner.Scanner.new_group": {"tf": 12.041594578792296}, "three.scanner.Scanner.new_project": {"tf": 6.164414002968976}, "three.scanner.Scanner.new_scan": {"tf": 14.628738838327793}, "three.scanner.Scanner.open_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.pop_settings": {"tf": 6.164414002968976}, "three.scanner.Scanner.pull_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.push_project": {"tf": 5.656854249492381}, "three.scanner.Scanner.push_settings": {"tf": 4.898979485566356}, "three.scanner.Scanner.reboot": {"tf": 4.898979485566356}, "three.scanner.Scanner.remove_groups": {"tf": 6.557438524302}, "three.scanner.Scanner.remove_projects": {"tf": 6.557438524302}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 6.557438524302}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 4.898979485566356}, "three.scanner.Scanner.rotate_turntable": {"tf": 5.656854249492381}, "three.scanner.Scanner.scan_data": {"tf": 12.206555615733702}, "three.scanner.Scanner.set_cameras": {"tf": 10.954451150103322}, "three.scanner.Scanner.set_group": {"tf": 11.789826122551595}, "three.scanner.Scanner.set_processing_devices": {"tf": 6.557438524302}, "three.scanner.Scanner.set_project": {"tf": 7.211102550927978}, "three.scanner.Scanner.set_projector": {"tf": 12.649110640673518}, "three.scanner.Scanner.shutdown": {"tf": 4.898979485566356}, "three.scanner.Scanner.smooth": {"tf": 9.539392014169456}, "three.scanner.Scanner.split_group": {"tf": 5.656854249492381}, "three.scanner.Scanner.start_video": {"tf": 4.898979485566356}, "three.scanner.Scanner.stop_video": {"tf": 4.898979485566356}, "three.scanner.Scanner.storage_info": {"tf": 4.898979485566356}, "three.scanner.Scanner.system_info": {"tf": 7.416198487095663}, "three.scanner.Scanner.transform_group": {"tf": 11.789826122551595}, "three.scanner.Scanner.turntable_calibration": {"tf": 4.898979485566356}, "three.scanner.Scanner.update_settings": {"tf": 18.303005217723125}, "three.scanner.Scanner.upload_project": {"tf": 5.656854249492381}, "three.serialization.Serializer": {"tf": 4.242640687119285}, "three.serialization.TO_JSON": {"tf": 3.4641016151377544}}, "df": 510, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 7}}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 190}}}, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 2}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 2}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 2}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 2}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 2}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 2}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 294, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 117}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}}, "df": 7, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}}, "df": 18}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 3.1622776601683795}, "three.MF.V3.Three.scan_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.23606797749979}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 2.23606797749979}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 2.23606797749979}, "three.scanner.Scanner.export": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.merge_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 2.23606797749979}, "three.scanner.Scanner.scan_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.update_settings": {"tf": 3.1622776601683795}}, "df": 155}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 22}}}}}}, "f": {"docs": {"three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 158}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}}, "df": 5}}, "r": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 204, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 2}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 7}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 2}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 78}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}}, "df": 21, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}}, "df": 17}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 2.449489742783178}, "three.MF.V3.Three.merge_data": {"tf": 2.449489742783178}, "three.scanner.Scanner.merge_data": {"tf": 2.449489742783178}, "three.scanner.Scanner.scan_data": {"tf": 2.449489742783178}}, "df": 14}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 2}}, "df": 8, "s": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 14}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 6}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 2}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 8}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 2}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}}, "df": 2}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.forget_wifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.upload_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.open_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.clear_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.close_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.copy_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scans": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.move_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.factory_reset": {"tf": 1.4142135623730951}, "three.MF.V3.Three.flatten_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.camera_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.turntable_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1.4142135623730951}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.MF.V3.Three.start_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.stop_video": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Three.shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_protocol_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_processing_devices": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_scanner_status": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pull_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.download_scanner_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.storage_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.discover_scanners": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.camera_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.close_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.connect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.connect_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1.4142135623730951}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.discover_scanners": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_scanner_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_logs": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.factory_reset": {"tf": 1.4142135623730951}, "three.scanner.Scanner.flatten_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.forget_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.get_protocol_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.get_scanner_status": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scans": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_wifi": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}, "three.scanner.Scanner.open_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pull_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.reboot": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.rotate_turntable": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_processing_devices": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.shutdown": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.start_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.stop_video": {"tf": 1.4142135623730951}, "three.scanner.Scanner.storage_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.turntable_calibration": {"tf": 1.4142135623730951}, "three.scanner.Scanner.update_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.upload_project": {"tf": 1.4142135623730951}}, "df": 248, "s": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 78}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}, "s": {"docs": {"three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 11}}}}}}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}}, "df": 69}, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}}, "df": 11, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 2}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}}, "df": 3}}}}}}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 164}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 15}}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 7}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}}}}}}, "m": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 3.3166247903554}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 2}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.7320508075688772}, "three.MF.V3.Three.smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.merge_data": {"tf": 2}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 2}, "three.MF.V3.Three.export_heat_map": {"tf": 2}, "three.MF.V3.Three.export_merge": {"tf": 2}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.449489742783178}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 2.449489742783178}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 2.449489742783178}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 2}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 2}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 2}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 2}, "three.scanner.Scanner.merge_data": {"tf": 2}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 2.449489742783178}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 2}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1.7320508075688772}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 3.3166247903554}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 356}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}}, "df": 35, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}}, "df": 35, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 2}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 2}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 2}}, "df": 16, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}}, "df": 7}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}, "u": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "v": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 3.3166247903554}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 2}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.7320508075688772}, "three.MF.V3.Three.smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.merge_data": {"tf": 2}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 2}, "three.MF.V3.Three.export_heat_map": {"tf": 2}, "three.MF.V3.Three.export_merge": {"tf": 2}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.449489742783178}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 2.449489742783178}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 2.449489742783178}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 2}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 2}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 2}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 2}, "three.scanner.Scanner.merge_data": {"tf": 2}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 2.449489742783178}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 2}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1.7320508075688772}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 3.3166247903554}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 356}, "docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 9}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.serialization.Serializer": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 5}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 2}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}}, "df": 52}}}}, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}}, "df": 94}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1}}, "df": 51}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1.7320508075688772}}, "df": 92}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "t": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}}, "df": 18, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}}, "df": 5}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 3}}}}}}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}}, "df": 27, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 2}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 2}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_projector": {"tf": 2}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 2}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 17, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}}, "df": 14}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"2": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 2.449489742783178}}, "df": 2}, "docs": {}, "df": 0}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "y": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 3}}}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.System.System.__init__": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}}}}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 3.4641016151377544}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 4.47213595499958}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 16}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.auto_focus": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 2}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 2}, "three.scanner.Scanner.align": {"tf": 2}}, "df": 7, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 3}}}}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 2}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 2}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 2}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.transform_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.7320508075688772}}, "df": 78}}}}, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 7}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}}, "df": 11}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}}, "df": 4}}, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"3": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}}, "df": 2}, "docs": {}, "df": 0}}}}}}}}}}}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}}, "df": 58}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.serialization.Serializer": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 2}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 2}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 2}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 2}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1}, "three.MF.V3.Task.Task.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 3.1622776601683795}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 2.23606797749979}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 2.449489742783178}, "three.MF.V3.Three.new_group": {"tf": 2.6457513110645907}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 2.449489742783178}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge": {"tf": 2}, "three.MF.V3.Three.merge_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.import_file": {"tf": 2.23606797749979}, "three.MF.V3.Three.export": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_heat_map": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_merge": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 2.449489742783178}, "three.MF.V3.Three.set_projector": {"tf": 2.449489742783178}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 2.6457513110645907}, "three.MF.V3.Three.capture_image": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 2.6457513110645907}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 2.449489742783178}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1.7320508075688772}, "three.scanner.Scanner.copy_groups": {"tf": 2.23606797749979}, "three.scanner.Scanner.depth_map": {"tf": 2.6457513110645907}, "three.scanner.Scanner.export": {"tf": 2.449489742783178}, "three.scanner.Scanner.export_heat_map": {"tf": 2.449489742783178}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 2.449489742783178}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 2.23606797749979}, "three.scanner.Scanner.merge": {"tf": 2}, "three.scanner.Scanner.merge_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 2.6457513110645907}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 2.6457513110645907}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_cameras": {"tf": 2.449489742783178}, "three.scanner.Scanner.set_group": {"tf": 2.449489742783178}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_projector": {"tf": 2.449489742783178}, "three.scanner.Scanner.smooth": {"tf": 1.4142135623730951}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 2.449489742783178}, "three.scanner.Scanner.update_settings": {"tf": 3.1622776601683795}, "three.serialization.Serializer": {"tf": 1}}, "df": 240, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 7}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 18, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1}}, "df": 1}}}}}}, "w": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 5}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}}, "df": 8, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 2}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 24, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}}, "df": 13, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 2}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}}, "df": 7}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1.4142135623730951}}, "df": 6}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 9}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 12}}}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1.4142135623730951}, "three.scanner.Scanner.align": {"tf": 1.4142135623730951}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge": {"tf": 1.4142135623730951}}, "df": 6}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 2}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1}}, "df": 3}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 2}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.4142135623730951}}, "df": 8}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 2}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 2}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_merge": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1.4142135623730951}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.new_scan": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}}, "df": 102}}, "x": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 2}}, "df": 2}}}}}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 15, "s": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 6}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}}, "df": 6}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 6}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.4142135623730951}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 2}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 2}, "three.MF.V3.Three.export_heat_map": {"tf": 2}, "three.MF.V3.Three.export_merge": {"tf": 2}, "three.scanner.Scanner.export": {"tf": 2}, "three.scanner.Scanner.export_heat_map": {"tf": 2}, "three.scanner.Scanner.export_merge": {"tf": 2}}, "df": 15}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1}}, "df": 79}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}}, "df": 3}}}}}}}}}, "u": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}}, "df": 3}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1}}, "df": 21, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Software.Software.__init__": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "x": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}}, "df": 1}, "y": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1}}, "df": 1}}}, "bases": {"root": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1.4142135623730951}, "three.MF.V3.Task.TaskState": {"tf": 1.4142135623730951}}, "df": 26}}}}}}, "doc": {"root": {"0": {"1": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "3": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "7": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 2}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 5.656854249492381}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 3}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 4.242640687119285}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 2}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 5.0990195135927845}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 3.605551275463989}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 49}, "1": {"0": {"0": {"0": {"0": {"0": {"0": {"0": {"1": {"2": {"3": {"4": {"5": {"6": {"7": {"8": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "2": {"4": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "3": {"8": {"7": {"9": {"2": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"2": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 5}, "1": {"2": {"2": {"1": {"6": {"3": {"2": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}}, "df": 2}, "9": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 9}, "2": {"6": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "7": {"8": {"4": {"3": {"8": {"5": {"6": {"8": {"1": {"1": {"5": {"2": {"3": {"4": {"4": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "8": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}}, "df": 2}, "docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}}, "df": 3}, "3": {"0": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}}, "df": 1}, "1": {"2": {"8": {"9": {"6": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 4}, "docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 5}, "4": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 3}, "5": {"0": {"8": {"2": {"6": {"1": {"0": {"6": {"8": {"8": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"8": {"1": {"8": {"8": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"0": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 2}, "8": {"2": {"0": {"9": {"6": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}}, "df": 4}, "6": {"8": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 6}, "7": {"5": {"0": {"2": {"5": {"3": {"6": {"7": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}}, "df": 2}, "8": {"0": {"0": {"0": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 10}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "9": {"0": {"9": {"6": {"5": {"1": {"0": {"4": {"6": {"4": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}}, "df": 3}, "6": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}}, "df": 1}, "9": {"6": {"3": {"5": {"6": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Align.Align": {"tf": 2}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 3.3166247903554}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 2}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.Import.Import": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 2}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 2}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 4.58257569495584}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 2}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 2}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 2}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 4.58257569495584}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 3}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 2}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 3.4641016151377544}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}}, "df": 86}, "2": {"0": {"0": {"0": {"0": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"4": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 5}, "6": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 1}, "1": {"0": {"4": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"1": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "3": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "4": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "3": {"4": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "7": {"7": {"5": {"7": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "4": {"3": {"1": {"4": {"0": {"8": {"3": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6}, "5": {"0": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "3": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "6": {"docs": {"three.MF.V3.Task.Task": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 2}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.449489742783178}}, "df": 10}, "docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}}, "df": 1}, "7": {"0": {"0": {"0": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "1": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}}, "df": 1}, "5": {"docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 3}, "docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}, "8": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 4}, "9": {"7": {"3": {"8": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2}}, "df": 29}, "3": {"0": {"0": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 2}, "4": {"8": {"2": {"3": {"7": {"0": {"5": {"6": {"0": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 1}, "2": {"0": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 8}, "4": {"1": {"5": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 4}, "4": {"3": {"1": {"1": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "9": {"7": {"0": {"9": {"0": {"4": {"5": {"7": {"6": {"0": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"0": {"4": {"4": {"9": {"4": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}, "4": {"0": {"9": {"8": {"3": {"4": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}, "6": {"0": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 5}, "docs": {}, "df": 0}, "7": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}}, "df": 2}, "8": {"0": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}}, "df": 1}, "9": {"2": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}}, "df": 1}, "6": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 3}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 24, "x": {"3": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 6}}, "4": {"1": {"3": {"3": {"7": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 4}, "4": {"2": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "7": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"9": {"6": {"2": {"2": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 12, "x": {"4": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "5": {"0": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}}, "df": 3}, "1": {"0": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}, "2": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "3": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 3}, "5": {"3": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"1": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "7": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}, "docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 2}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 2}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 25}, "6": {"1": {"1": {"2": {"4": {"8": {"9": {"7": {"0": {"0": {"3": {"1": {"7": {"3": {"8": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "2": {"8": {"9": {"8": {"0": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}}, "df": 1}, "3": {"1": {"2": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 3.4641016151377544}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}}, "df": 2}, "5": {"5": {"3": {"6": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 2}, "docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}}, "df": 9}, "7": {"3": {"4": {"1": {"0": {"7": {"9": {"7": {"1": {"1": {"9": {"1": {"4": {"0": {"6": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"0": {"1": {"9": {"9": {"7": {"5": {"0": {"6": {"5": {"6": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}}, "df": 5}, "8": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 2}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 8}, "8": {"0": {"0": {"0": {"0": {"0": {"0": {"1": {"1": {"9": {"2": {"0": {"9": {"2": {"9": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 5}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"1": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "4": {"1": {"3": {"7": {"3": {"7": {"docs": {"three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "7": {"7": {"2": {"6": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"2": {"3": {"2": {"1": {"0": {"7": {"5": {"2": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "6": {"6": {"6": {"4": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 2}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 13}, "9": {"0": {"0": {"0": {"0": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8}, "1": {"0": {"1": {"5": {"3": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}, "4": {"5": {"5": {"4": {"0": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}}, "df": 1}, "6": {"4": {"1": {"2": {"7": {"5": {"4": {"0": {"5": {"8": {"8": {"3": {"7": {"9": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "5": {"6": {"4": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "7": {"0": {"6": {"4": {"3": {"9": {"9": {"7": {"1": {"9": {"2": {"3": {"8": {"3": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "8": {"4": {"6": {"7": {"2": {"0": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}}, "df": 5}, "docs": {"three": {"tf": 1.7320508075688772}, "three.MF": {"tf": 1.7320508075688772}, "three.MF.V3": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer": {"tf": 15.7797338380595}, "three.MF.V3.Buffer.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Buffer.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.center": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.transform": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Poor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Fair": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Good": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Quality.Excellent": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Camera.date": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.date": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.Turntable.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.quads": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.hold": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.quad": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.corners": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.target": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.grayscale": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.width": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.height": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.NoFace": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Point": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Line": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Triangle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Face.Quad": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture.Single": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.Texture.Multiple": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.format": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.extension": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.description": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.normals": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.colors": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.textures": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Export.Export.faces": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.count": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.median": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.mean": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.stddev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.HeatMap.HeatMap.outlierDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.width": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.height": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Image.Image.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.Unspecified": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.FileNotSupported": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.CannotReadFile": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.MeshIsEmpty": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Error.NotEnoughStorage": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported.file": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.file": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Ignored.error": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.imported": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.ignored": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.triangles": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.quads": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.positions": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.normals": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.uvs": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.Mesh.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.textures": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.maxSimplifyCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Merge.Merge.meshes": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.ip": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Network.Interface.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Brief.modified": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.color": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.scan": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.Group.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Project.Project.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.vertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan.triangles": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.project": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.undo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions.redo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProtocolInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 4.242640687119285}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.capabilities": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.vertices": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan.triangles": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 3.7416573867739413}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.rows": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.cols": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.orientation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.frequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.phase": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.angle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Position": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Normal": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.UV": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Triangle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.offset": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.normalized": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.stride": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.components": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.index": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.buffers": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.mean": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.stddev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.axisAlignedBoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.ScannerList.ScannerList.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.name": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.host": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.ip": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.port": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner.version": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList.scanners": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerStatus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 3.7416573867739413}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.connected": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus.host": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.HorizontalFrequencies.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.VerticalFrequencies.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ProjectorSampleRate.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.ImageSampleRate.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.Threshold.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.LaplacianKernelRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.GaussianBlurStdDev.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.MaximumWidthForProcessing.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.KernelRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.SpatialWeightStdDev.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Type.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.Rate.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.Method.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourCount.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.MaximumNeighbourRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.UseMaximumNeighbourRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourCount.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.NeighbourRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.VoxelSize.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Depth.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.Scale.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.LinearInterpolation.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingRadius.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMinHeight.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.PointClippingMaxHeight.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.box": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.autoExposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.exposure": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.analogGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.digitalGain": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Camera.Camera.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.blendCount": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.I18n.I18n.language": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.brightness": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Projector.Projector.on": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.projector": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.i18n": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.style": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner.software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Software.Software.updateMajor": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Style.Style.theme": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.sweep": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.show": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.value": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.default": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.min": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity.max": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.installed": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.update": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.Package.changelog": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.frontend": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Software.Software.server": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.available": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space.capacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.local": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace.capacity": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.DiskSpace.available": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.serialNumber": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.diskSpace": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.System.System.publicKey": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.format": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.width": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.height": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.step": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.number": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.timestamp": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.duration": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame.calibrationCard": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isPublic": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.isActive": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.password": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.Network.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Wifi.Wifi.networks": {"tf": 1.7320508075688772}, "three.MF.V3.Settings": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.horizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.verticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Capture.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.projectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.imageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Sampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 3}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.maximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 3.872983346207417}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.spatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.rate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.transform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.maximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.neighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.voxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.depth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.linearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Remesh.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Camera.useContinuousExposureValues": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.rampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.pointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.sampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.edgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.phaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.adaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.normalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.outlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.absoluteError": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.relativeError": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Points.useAllPoints": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.downsampleVoxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeatureRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.maximumFeaturePointCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.maximumMatchDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.minimumMatchSimilarity": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Ransac.mutualFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.ICP.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.ICP.matchDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.FastGlobal": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.Ransac": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.Method.Points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.ransac": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Rough.points": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Method.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Method.ICP": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.Transform.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.icp": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.Fine.initialTransform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.source": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.target": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.rough": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Align.Align.fine": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera.box": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.applyAll": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.AutoFocus.AutoFocus.cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox.BoundingBox.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 2.23606797749979}, "three.MF.V3.Settings.BoundingBox.BoundingBox.axisAligned": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.autoExposure": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.exposure": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.analogGain": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.digitalGain": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Camera.Camera.focus": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.calibrationCard": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.horizontalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.verticalFrequencies": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.blendCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.horizontalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Capture.Capture.verticalBlendFrequency": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.jpg": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.png": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.bmp": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec.raw": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CaptureImage.CaptureImage.grayscale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.enumerate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyProject.CopyProject.copyName": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.ply": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.dae": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.fbx": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.glb": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.obj": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.stl": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Format.xyz": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.offset": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.min": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color.max": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.texture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.merge": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.name": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.sources": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.targets": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.HeatMap.HeatMap.outlierDistance": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.en": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.fr": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.de": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.zh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.Language.ja": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.I18n.I18n.language": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Millimeter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Centimeter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Meter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Inch": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.Unit.Foot": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.name": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.unit": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.center": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Import.Import.groupIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryLow": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.Low": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.Medium": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.High": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality.VeryHigh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.voxelSize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.depth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.scale": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Remesh.linearInterpolation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.QuadraticDecimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowTriangles": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuads": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method.FlowQuadDominant": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Simplify.faceCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.remesh": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.simplify": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.texturize": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.baseName": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.rotation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.translation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Project.Project.name": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Orientation.Horizontal": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Orientation.Vertical": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.orientation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.frequency": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Pattern.phase": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Projector.Projector.Image.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.width": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.height": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.step": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.Source.fixAspectRatio": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.source": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.Image.target": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.on": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.brightness": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.pattern": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.image": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Projector.Projector.color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality.Low": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality.Medium": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Quality.Quality.High": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.x": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.y": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.width": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Rectangle.Rectangle.height": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 3}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.threshold": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.maximumWidthForProcessing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.spatialWeightStdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.NONE": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.REGULAR": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.Type.RANDOM": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling.rate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCube": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideCylinder": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.OutsideSphere": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCube": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideCylinder": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type.InsideSphere": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.type": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.transform": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_LLS": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.Method.NORMAL_OPEN3D": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.maximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.useMaximumNeighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourCount": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval.neighbourRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.projectorSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.imageSampleRate": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.edgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.phaseFilter": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.adaptiveSampling": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.pointClipping": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.normalEstimation": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.outlierRemoval": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.processing": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.alignWithScanner": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.centerAtOrigin": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Position": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Normal": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.UV": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Quality": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Triangle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.Texture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Buffer.All": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.Mean": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.StdDev": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.Metadata.AxisAlignedBoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Combined": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Remeshed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Simplified": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep.Textured": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.index": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.mergeStep": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.buffers": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData.metadata": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.selected": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.visible": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode.all": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanSelection.ScanSelection.groups": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.advanced": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.capture": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.i18n": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.projector": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.style": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scanner.Scanner.software": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.iterations": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.mu": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.selection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Smooth.Smooth.taubin": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.updateMajor": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Software.Software.updateNightly": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.Theme": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.Theme.Light": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.Theme.Dark": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Style.Style.theme": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.scans": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.sweep": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.use": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMinHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.pointClippingMaxHeight": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Turntable.Turntable.offsetAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed.pages": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.show": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Tutorials.Tutorials.viewed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.NoCodec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.RAW": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.JPEG": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Codec.H264": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.NoFormat": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.RGB565": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.RGB888": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.BGR888": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.Format.YUV420": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.codec": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.format": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.width": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Video.Video.height": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer.Viewer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Viewer.Viewer.textureOpacity": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi.ssid": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Wifi.Wifi.password": {"tf": 1.7320508075688772}, "three.MF.V3.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Empty": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Sent": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Received": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Started": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Completed": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Cancelled": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Failed": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Dropped": {"tf": 1.7320508075688772}, "three.MF.V3.Task.TaskState.Disconnected": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task": {"tf": 18.193405398660254}, "three.MF.V3.Task.Task.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.State": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Task.Task.Progress": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 14.177446878757825}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 17.776388834631177}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Align.Align.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Align.Align.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 26}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 20.223748416156685}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 11.61895003862225}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 13.527749258468683}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 17.320508075688775}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 12.922847983320086}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 25}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 25.787593916455254}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 11}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 12.84523257866513}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 13.341664064126334}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 21.02379604162864}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 27.622454633866266}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 11.74734012447073}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 12}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 14.247806848775006}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 15.427248620541512}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 12.206555615733702}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 19.364916731037084}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Export.Export.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Export.Export.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Export.Export.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 14.247806848775006}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 17.233687939614086}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 15.264337522473747}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 17.146428199482248}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 14.422205101855956}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 12.806248474865697}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 12.609520212918492}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 11.313708498984761}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 11.313708498984761}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 11.313708498984761}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 28.0178514522438}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 17.97220075561143}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 21.863211109075447}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 20.42057785666214}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 15.297058540778355}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 17.60681686165901}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 14.491376746189438}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 18.49324200890693}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScans.ListScans.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScans.ListScans.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 25.787593916455254}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 16.401219466856727}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 22.181073012818835}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Merge.Merge.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Merge.Merge.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 36.87817782917155}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 15.033296378372908}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 14.89966442575134}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 13.30413469565007}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewProject.NewProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewProject.NewProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 20.049937655763422}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 12.884098726725126}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 26.1725046566048}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 14.832396974191326}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PullProject.PullProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PullProject.PullProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PullProject.PullProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 14.832396974191326}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PushProject.PushProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PushProject.PushProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 25.787593916455254}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Reboot.Reboot.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Reboot.Reboot.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 18.65475810617763}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 15.198684153570664}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 11.74734012447073}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 37.749172176353746}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer.Descriptor": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 18.110770276274835}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 24.24871130596428}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 12.727922061357855}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 17.349351572897472}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 17.204650534085253}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 10.723805294763608}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 17.146428199482248}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Smooth.Smooth.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Smooth.Smooth.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 14.52583904633395}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 13.114877048604}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 10.862780491200215}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 14.212670403551895}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 7.745966692414834}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 18.65475810617763}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 13.527749258468683}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 27.54995462791182}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Input": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Output": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 14}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.State": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response.Error": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Index": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Size": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Three": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Three.connect_wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Three.forget_wifi": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.push_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.pop_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.update_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_projects": {"tf": 1.7320508075688772}, "three.MF.V3.Three.download_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.upload_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.open_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.clear_settings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.close_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.copy_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_projects": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_scans": {"tf": 1.7320508075688772}, "three.MF.V3.Three.scan_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.move_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.factory_reset": {"tf": 1.7320508075688772}, "three.MF.V3.Three.flatten_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.split_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.transform_group": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_groups": {"tf": 1.7320508075688772}, "three.MF.V3.Three.bounding_box": {"tf": 1.7320508075688772}, "three.MF.V3.Three.align": {"tf": 1.7320508075688772}, "three.MF.V3.Three.smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.merge_data": {"tf": 1.7320508075688772}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.import_file": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_export_formats": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_merge": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_logs": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1.7320508075688772}, "three.MF.V3.Three.has_cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Three.has_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.has_turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Three.system_info": {"tf": 1.7320508075688772}, "three.MF.V3.Three.camera_calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Three.turntable_calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.7320508075688772}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1.7320508075688772}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1.7320508075688772}, "three.MF.V3.Three.start_video": {"tf": 1.7320508075688772}, "three.MF.V3.Three.stop_video": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_cameras": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_projector": {"tf": 1.7320508075688772}, "three.MF.V3.Three.auto_focus": {"tf": 1.7320508075688772}, "three.MF.V3.Three.rotate_turntable": {"tf": 1.7320508075688772}, "three.MF.V3.Three.new_scan": {"tf": 1.7320508075688772}, "three.MF.V3.Three.capture_image": {"tf": 1.7320508075688772}, "three.MF.V3.Three.depth_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.reboot": {"tf": 1.7320508075688772}, "three.MF.V3.Three.shutdown": {"tf": 1.7320508075688772}, "three.MF.V3.Three.get_protocol_info": {"tf": 1.7320508075688772}, "three.MF.V3.Three.set_processing_devices": {"tf": 1.7320508075688772}, "three.MF.V3.Three.connect_scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1.7320508075688772}, "three.MF.V3.Three.get_scanner_status": {"tf": 1.7320508075688772}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1.7320508075688772}, "three.MF.V3.Three.push_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.pull_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1.7320508075688772}, "three.MF.V3.Three.download_scanner_project": {"tf": 1.7320508075688772}, "three.MF.V3.Three.storage_info": {"tf": 1.7320508075688772}, "three.MF.V3.Three.discover_scanners": {"tf": 1.7320508075688772}, "three.scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner": {"tf": 3.7416573867739413}, "three.scanner.Scanner.__init__": {"tf": 3.7416573867739413}, "three.scanner.Scanner.OnTask": {"tf": 1.7320508075688772}, "three.scanner.Scanner.OnMessage": {"tf": 1.7320508075688772}, "three.scanner.Scanner.OnBuffer": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 4}, "three.scanner.Scanner.Disconnect": {"tf": 1.7320508075688772}, "three.scanner.Scanner.IsConnected": {"tf": 2.449489742783178}, "three.scanner.Scanner.SendTask": {"tf": 4.358898943540674}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.align": {"tf": 1.7320508075688772}, "three.scanner.Scanner.auto_focus": {"tf": 1.7320508075688772}, "three.scanner.Scanner.bounding_box": {"tf": 1.7320508075688772}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1.7320508075688772}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1.7320508075688772}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.7320508075688772}, "three.scanner.Scanner.camera_calibration": {"tf": 1.7320508075688772}, "three.scanner.Scanner.capture_image": {"tf": 1.7320508075688772}, "three.scanner.Scanner.clear_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.close_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.connect_scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.connect_wifi": {"tf": 1.7320508075688772}, "three.scanner.Scanner.copy_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.depth_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1.7320508075688772}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.discover_scanners": {"tf": 1.7320508075688772}, "three.scanner.Scanner.download_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.download_scanner_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_logs": {"tf": 1.7320508075688772}, "three.scanner.Scanner.export_merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.factory_reset": {"tf": 1.7320508075688772}, "three.scanner.Scanner.flatten_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.forget_wifi": {"tf": 1.7320508075688772}, "three.scanner.Scanner.get_protocol_info": {"tf": 1.7320508075688772}, "three.scanner.Scanner.get_scanner_status": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_cameras": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.has_turntable": {"tf": 1.7320508075688772}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_export_formats": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_scans": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.list_wifi": {"tf": 1.7320508075688772}, "three.scanner.Scanner.merge": {"tf": 1.7320508075688772}, "three.scanner.Scanner.merge_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.move_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.new_scan": {"tf": 1.7320508075688772}, "three.scanner.Scanner.open_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.pop_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.pull_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.push_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.push_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.reboot": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_groups": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1.7320508075688772}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1.7320508075688772}, "three.scanner.Scanner.rotate_turntable": {"tf": 1.7320508075688772}, "three.scanner.Scanner.scan_data": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_cameras": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_processing_devices": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_project": {"tf": 1.7320508075688772}, "three.scanner.Scanner.set_projector": {"tf": 1.7320508075688772}, "three.scanner.Scanner.shutdown": {"tf": 1.7320508075688772}, "three.scanner.Scanner.smooth": {"tf": 1.7320508075688772}, "three.scanner.Scanner.split_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.start_video": {"tf": 1.7320508075688772}, "three.scanner.Scanner.stop_video": {"tf": 1.7320508075688772}, "three.scanner.Scanner.storage_info": {"tf": 1.7320508075688772}, "three.scanner.Scanner.system_info": {"tf": 1.7320508075688772}, "three.scanner.Scanner.transform_group": {"tf": 1.7320508075688772}, "three.scanner.Scanner.turntable_calibration": {"tf": 1.7320508075688772}, "three.scanner.Scanner.update_settings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.upload_project": {"tf": 1.7320508075688772}, "three.serialization": {"tf": 1.7320508075688772}, "three.serialization.Serializer": {"tf": 1.7320508075688772}, "three.serialization.TO_JSON": {"tf": 3}}, "df": 2539, "g": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}}, "df": 2}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 4}}}, "l": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 29, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}}, "df": 5}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 2}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 3}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 3.4641016151377544}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 2}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 2}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 33, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}}, "df": 32}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 3}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1, "n": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 4, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}}, "df": 37, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.scanner.Scanner": {"tf": 2}, "three.scanner.Scanner.__init__": {"tf": 2}}, "df": 6}}}}}, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 16}}}}}, "e": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 16, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 3}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}}}}, "y": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 11, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 16}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 7, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}}, "df": 4}}}}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}}, "df": 10}, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 14}}, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 9}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}}, "df": 4, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.4142135623730951}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 30, "s": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 3}}}}}, "h": {"docs": {"three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}}, "df": 12, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 12, "d": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}}, "df": 6, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}}, "df": 3}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 2}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 5, "s": {"docs": {"three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 8}}, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 2}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}, "j": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 4}}}}}}}, "x": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.6457513110645907}}, "df": 11, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 6, "l": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 6}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}}, "df": 4}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 7, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}}, "df": 3}}}}}, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}}, "df": 1}}}}, "u": {"docs": {"three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 2}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.6457513110645907}}, "df": 11, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.7320508075688772}}, "df": 1, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 4}}}}}}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 193, "m": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 8}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 3, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}}, "df": 3}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 11}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 14}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 3}}}}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 5}}, "m": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 3}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}}, "df": 1}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 9, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 17}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}}, "df": 29}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2.23606797749979}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 3, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "g": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}, "w": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "t": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1, "h": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 4.69041575982343}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 3}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 2.23606797749979}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 2}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 2.23606797749979}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 2.23606797749979}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 2.449489742783178}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 2.23606797749979}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.4142135623730951}, "three.MF.V3.Task.Task": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 3}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 2}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 2}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 4.58257569495584}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 2}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scans": {"tf": 1.4142135623730951}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1.4142135623730951}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 2.23606797749979}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 2.6457513110645907}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_groups": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scans": {"tf": 1.4142135623730951}, "three.scanner.Scanner.merge_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1.7320508075688772}}, "df": 360, "n": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 6}, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 2}}, "m": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6, "s": {"docs": {"three.MF.V3.Settings.Style.Style.Theme": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 4}}, "y": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner": {"tf": 2}, "three.scanner.Scanner.__init__": {"tf": 2}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 12}, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}}, "df": 18}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.8284271247461903}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 2}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 2}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 2.449489742783178}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 256, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 12, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}}, "df": 3}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}}}}}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 3.1622776601683795}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 2}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 2.6457513110645907}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1.4142135623730951}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.scanner.Scanner": {"tf": 2.23606797749979}, "three.scanner.Scanner.__init__": {"tf": 2}, "three.scanner.Scanner.Connect": {"tf": 1.7320508075688772}, "three.scanner.Scanner.SendTask": {"tf": 1.7320508075688772}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.4142135623730951}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 86, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 15}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 3}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 7}}}}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 5, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 2.23606797749979}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 31}}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 4.123105625617661}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 4.123105625617661}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}}, "df": 83, "s": {"docs": {"three.MF.V3.Descriptors.Export.Export.Face": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 14, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 5}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 26, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}}, "df": 1}}, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}}, "df": 6}}}}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}}, "df": 7}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.7320508075688772}}, "df": 1, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 15, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.Metadata": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 3}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1.4142135623730951}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 82, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 2}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 83, "s": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 2}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 4, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 21}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 5}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2.449489742783178}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 8, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.449489742783178}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 106, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.serialization.TO_JSON": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 8}, "d": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 4, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 25, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}}, "df": 5}}}}}}}}}}}}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}}, "df": 3, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Group.Group": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.list_settings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1.4142135623730951}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}, "three.scanner.Scanner.list_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.push_settings": {"tf": 1.4142135623730951}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 115}}}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}}, "df": 8}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.ScanSelection.ScanSelection": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.Mode": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 8}}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 4}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}}, "df": 1}}}}}}}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Export.Export.Texture": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 2}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 3}}}}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 26}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Merge.Merge.Simplify": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 6}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 80}, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}}, "df": 3}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 6}}}, "r": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 8, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1}}, "s": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 4}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.serialization.TO_JSON": {"tf": 1.4142135623730951}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 4}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}}, "df": 4}}}}}}}}, "p": {"docs": {"three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 3, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 2}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Show": {"tf": 1}}, "df": 1}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Three.shutdown": {"tf": 1}, "three.scanner.Scanner.shutdown": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1}}, "y": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}}, "df": 1}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 7}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 3}}, "c": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 2}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 3, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 5, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 2}}, "df": 3}}}}, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}}, "df": 158, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}, "s": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Response": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Response": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Response": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Response": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Response": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Response": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Response": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Response": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Response": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Response": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Response": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Response": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Response": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}}, "df": 156}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}}, "df": 3}}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}}, "df": 9, "s": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}}, "df": 1}, "d": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 1}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Three.factory_reset": {"tf": 1}, "three.scanner.Scanner.factory_reset": {"tf": 1}}, "df": 3}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.remove_groups": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_groups": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 11, "s": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Response": {"tf": 1}}, "df": 3}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 4}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Remesh": {"tf": 1}, "three.MF.V3.Settings.Merge.Merge.Simplify.Method": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 3}, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 6}}, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 4}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Rectangle.Rectangle": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Task.Task": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Response": {"tf": 1}, "three.MF.V3.Three.reboot": {"tf": 1}, "three.scanner.Scanner.reboot": {"tf": 1}}, "df": 5}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.7320508075688772}}, "df": 13}}}, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Three.rotate_turntable": {"tf": 1}, "three.scanner.Scanner.rotate_turntable": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 2}}, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 3}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 3}}}}, "a": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 9}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.7320508075688772}}, "df": 5}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 2}}}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.move_group": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.bounding_box": {"tf": 1}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1.7320508075688772}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1.4142135623730951}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1.7320508075688772}, "three.scanner.Scanner.import_file": {"tf": 1.4142135623730951}, "three.scanner.Scanner.move_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1.4142135623730951}, "three.scanner.Scanner.upload_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 121, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 8, "d": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.scanner.Scanner": {"tf": 2}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 49, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 3}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AnalogGain": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 10}}}}}}}}, "y": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.scanner.Scanner": {"tf": 2.23606797749979}, "three.scanner.Scanner.__init__": {"tf": 2.23606797749979}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 23}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}, "d": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 4}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}}, "df": 3, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 15, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}}, "df": 3}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}}, "df": 3, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "d": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 1}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Box": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}}, "df": 7, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Response": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 6}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.transform_group": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}, "three.scanner.Scanner.transform_group": {"tf": 1}}, "df": 15, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}}, "df": 14}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Response": {"tf": 1}, "three.MF.V3.Three.align": {"tf": 1}, "three.scanner.Scanner.align": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Ransac": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Rough.Method": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine": {"tf": 1}, "three.MF.V3.Settings.Align.Align.Fine.Method": {"tf": 1}}, "df": 8}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 8}}}}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Align.Align.Request": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus.Request": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset.Request": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge.Request": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData.Request": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData.Request": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject.Request": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown.Request": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth.Request": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo.Request": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo.Request": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 90, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}}, "df": 4, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject.Request": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "u": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 8, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.restore_factory_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 31, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_turntable": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.calibrate_turntable": {"tf": 1}}, "df": 6, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}}, "df": 1}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras.Response": {"tf": 1}}, "df": 3}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}}, "df": 2}}}}, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 2}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.Camera": {"tf": 1}, "three.MF.V3.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 33, "s": {"docs": {"three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.calibrate_cameras": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.calibrate_cameras": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 19}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Request": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "p": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Texture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1.4142135623730951}, "three.scanner.Scanner.capture_image": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 31, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}}, "df": 2}, "d": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Request": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Response": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.7320508075688772}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}}, "df": 5}}}}}}}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 10}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1.4142135623730951}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 23}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.7320508075688772}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}}, "df": 3}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner.Response": {"tf": 1}}, "df": 3}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi.Response": {"tf": 1}}, "df": 3}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 3, "d": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}}, "df": 79}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.Type": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 5}}}}, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.Merge.Merge": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}}, "df": 9, "s": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}}, "df": 2}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}}, "df": 1}, "c": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}}, "df": 3}}}}}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}}, "df": 12, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups.Response": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 4}, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}}, "df": 30, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 9, "s": {"docs": {"three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}}, "df": 7, "d": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 1}, "s": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2.6457513110645907}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Settings.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 26}, "e": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "k": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 5}}, "e": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 1}}, "o": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 12, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject.Buffer": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}}, "df": 6}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Request": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.Export.Export": {"tf": 1}, "three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge": {"tf": 1}, "three.MF.V3.Descriptors.Merge.Merge.Mesh": {"tf": 1}, "three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Sampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Remesh": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Scanner.Scanner": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Style.Style.Theme": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software": {"tf": 1}, "three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}, "three.MF.V3.Descriptors.System.System": {"tf": 1}, "three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Three.camera_calibration": {"tf": 1}, "three.MF.V3.Three.turntable_calibration": {"tf": 1}, "three.scanner.Scanner.camera_calibration": {"tf": 1}, "three.scanner.Scanner.turntable_calibration": {"tf": 1}}, "df": 72, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1}, "s": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}, "k": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_scanner_status": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 37}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}}, "df": 1}}}, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 3.872983346207417}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 17}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 5}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 6}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}}, "df": 2}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Three.set_processing_devices": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Export.Export.Color": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Three.depth_map": {"tf": 1}, "three.scanner.Scanner.depth_map": {"tf": 1}}, "df": 3, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DepthMap.DepthMap.Request": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Response": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap.Buffer": {"tf": 1}}, "df": 4}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}}}}, "x": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2}}, "df": 1}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1, "n": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList.Scanner": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Request": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners.Response": {"tf": 1}}, "df": 4}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Request": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}, "k": {"docs": {"three.MF.V3.Descriptors.System.System.DiskSpace": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 2, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 6, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Camera.Camera.DigitalGain": {"tf": 1}}, "df": 1, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}}, "df": 10}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}}, "df": 3}}}}}}}}}, "i": {"1": {"8": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.449489742783178}}, "df": 1, "n": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Sweep": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}}, "df": 36, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Three.system_info": {"tf": 1}, "three.scanner.Scanner.system_info": {"tf": 1}}, "df": 3}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 2}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 2}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 2}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 2}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 2}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 2}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 2}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.Import.Import": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 2}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 2}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 2}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 2}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 2}}, "df": 85, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1.4142135623730951}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 46}}}, "t": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 1}}, "df": 7}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}}, "df": 1}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 2}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.7320508075688772}, "three.scanner.Scanner.__init__": {"tf": 1.7320508075688772}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.IsConnected": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 42, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 2}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.7320508075688772}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1.4142135623730951}, "three.scanner.Scanner.flatten_group": {"tf": 1}}, "df": 7, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Three.split_group": {"tf": 1.4142135623730951}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1.4142135623730951}}, "df": 7}}, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Descriptors.Image.Image": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Settings.CaptureImage.CaptureImage.Codec": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image.Source": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Three.capture_image": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.capture_image": {"tf": 1}}, "df": 19, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 6}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Import.Import": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.MF.V3.Settings.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 2}, "three.MF.V3.Tasks.Import.Import.Request": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Response": {"tf": 1}, "three.MF.V3.Tasks.Import.Import.Buffer": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 4}}, "s": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 1}}}}}}}}, "f": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}, "three.scanner.Scanner.IsConnected": {"tf": 1.4142135623730951}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 34}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}}, "df": 5}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "c": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}}, "df": 1}}, "o": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1}, "p": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.7320508075688772}}, "df": 2}, "e": {"docs": {"three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 3}}, "w": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.BlendFrequency": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 13}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 6}}, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 17, "i": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 4}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Descriptors.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Settings.Wifi.Wifi": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.forget_wifi": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.forget_wifi": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 14}}, "d": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 5}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 5}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}}, "df": 2}}, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}}, "df": 5}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.has_turntable": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.has_turntable": {"tf": 1}}, "df": 9}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 1}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}}, "df": 2, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.Disconnect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 5}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"0": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}}}, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Align.Align": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}}, "df": 79}}}}}, "p": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.AutoExposure": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Exposure": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.7320508075688772}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 14}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Export.Export": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Format": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.Export.Export.Request": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Response": {"tf": 1}, "three.MF.V3.Tasks.Export.Export.Buffer": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.MF.V3.Three.export_merge": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}, "three.scanner.Scanner.export_merge": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}}, "df": 23, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap.Buffer": {"tf": 1}}, "df": 4}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs.Buffer": {"tf": 1}}, "df": 4}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Request": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Response": {"tf": 1}, "three.MF.V3.Tasks.ExportMerge.ExportMerge.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Three.open_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}}, "df": 2}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Three.calibration_capture_targets": {"tf": 1}, "three.scanner.Scanner.calibration_capture_targets": {"tf": 1}}, "df": 7}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Import.Import.Error": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}}, "df": 4}}}}, "n": {"docs": {"three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}}, "df": 5, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_scanner_status": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1.4142135623730951}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 33}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 3}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2}, "s": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}}, "df": 1, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}}, "df": 3}}}}, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2.23606797749979}}, "df": 3, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 1}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "h": {"0": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}}, "g": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 3}}, "z": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}}, "df": 6}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 9}}}}, "p": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.Import.Import.Imported": {"tf": 1}, "three.MF.V3.Descriptors.Import.Import.Ignored": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyProject.CopyProject": {"tf": 1}, "three.MF.V3.Settings.Project.Project": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 2}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Three.download_project": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.add_merge_to_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.add_merge_to_project": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.download_project": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 59, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.Brightness": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Image": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.MF.V3.Three.set_projector": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}, "three.scanner.Scanner.set_projector": {"tf": 1}}, "df": 18}}, "s": {"docs": {"three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.remove_projects": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 13}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Three.set_group": {"tf": 1}, "three.scanner.Scanner.set_group": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Three.merge_data": {"tf": 1}, "three.scanner.Scanner.merge_data": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanData.ScanData.MergeStep": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.MF.V3.Three.set_processing_devices": {"tf": 1.4142135623730951}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.set_processing_devices": {"tf": 1.4142135623730951}}, "df": 14}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}}, "df": 4}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 4}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 5, "s": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 2}}}}}}, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PointClipping": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Align.Align.ICP": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PointClipping.Type": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Three.pop_settings": {"tf": 1}, "three.scanner.Scanner.pop_settings": {"tf": 1}}, "df": 3, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings.Response": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}}, "df": 4}}}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Align.Align.Points": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Software.Software.Package": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 3}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Three.split_group": {"tf": 1}, "three.scanner.Scanner.split_group": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}, "three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 2}}, "df": 1}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Format": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "s": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Three.push_settings": {"tf": 1}, "three.scanner.Scanner.push_settings": {"tf": 1}}, "df": 3, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ScannerStatus.ScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}}, "df": 2}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject.Response": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushSettings.PushSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PullProject.PullProject.Request": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2.8284271247461903}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}, "y": {"docs": {"three.MF.V3.Tasks.Import.Import": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 2}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 6.6332495807108}, "three.MF.V3.Task.Task": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.Align.Align": {"tf": 7.874007874011811}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 12}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 4.898979485566356}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 5.477225575051661}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 5.477225575051661}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 12}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 5.0990195135927845}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 9.273618495495704}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 12.569805089976535}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 4.898979485566356}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 6.164414002968976}, "three.MF.V3.Tasks.DownloadProject.DownloadProject": {"tf": 6.6332495807108}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.Export.Export": {"tf": 9.055385138137417}, "three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.FactoryReset.FactoryReset": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 6.48074069840786}, "three.MF.V3.Tasks.ForgetWifi.ForgetWifi": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 12.489995996796797}, "three.MF.V3.Tasks.Import.Import": {"tf": 8.48528137423857}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 10.198039027185569}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 7.211102550927978}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 5.656854249492381}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 7.3484692283495345}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 10.392304845413264}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 17.029386365926403}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 6.48074069840786}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 6.782329983125268}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 6.164414002968976}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 9.16515138991168}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 5.656854249492381}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 12.806248474865697}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 12.649110640673518}, "three.MF.V3.Tasks.Reboot.Reboot": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 5.291502622129181}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 7.483314773547883}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.RestoreFactoryCalibration.RestoreFactoryCalibration": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.RotateTurntable.RotateTurntable": {"tf": 4.898979485566356}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 17.4928556845359}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 8.246211251235321}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 9.797958971132712}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 4.69041575982343}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 7.615773105863909}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 7.3484692283495345}, "three.MF.V3.Tasks.Shutdown.Shutdown": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 7.3484692283495345}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 6.324555320336759}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 4.47213595499958}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 5.830951894845301}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 7.0710678118654755}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 5.477225575051661}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 13.416407864998739}, "three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 5.830951894845301}}, "df": 78}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.Quality": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Capture.Capture.Quality": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Merge.Merge.Quality": {"tf": 1}, "three.MF.V3.Settings.Quality.Quality": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 2}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 18}}}}, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 2}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "n": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}}, "df": 4, "t": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 7, "e": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 3}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2}}, "df": 7, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 5}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Capture.Capture.BlendCount": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.scanner.Scanner": {"tf": 2.449489742783178}, "three.scanner.Scanner.__init__": {"tf": 2.449489742783178}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"1": {"docs": {"three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}}, "df": 3}, "2": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}}, "df": 1}, "3": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}}, "df": 1}, "docs": {"three.MF.V3.Descriptors.Network.Interface": {"tf": 1}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.Wifi.Wifi.Network": {"tf": 1}, "three.MF.V3.Tasks.ConnectWifi.ConnectWifi": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Three.connect_wifi": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.connect_wifi": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}}, "df": 10, "s": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 5}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 4}}}, "s": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 2}}}}}, "w": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 2}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Three.new_project": {"tf": 1}, "three.MF.V3.Three.new_group": {"tf": 1}, "three.MF.V3.Three.new_scan": {"tf": 1}, "three.scanner.Scanner.new_group": {"tf": 1}, "three.scanner.Scanner.new_project": {"tf": 1}, "three.scanner.Scanner.new_scan": {"tf": 1}}, "df": 15, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup.Request": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup.Response": {"tf": 1}}, "df": 3}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewProject.NewProject.Request": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject.Response": {"tf": 1}}, "df": 3}}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan.Request": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan.Response": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 4}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 2.8284271247461903}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 2}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}}, "df": 31, "s": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}}, "df": 2, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 1}}}}}}}}}}, "o": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Buffer.Buffer": {"tf": 1}, "three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Turntable.RampAngle": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Scans": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.nameSuffix": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 2}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.Export.Export": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.bounding_box": {"tf": 1.4142135623730951}, "three.MF.V3.Three.smooth": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.MF.V3.Three.export": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.bounding_box": {"tf": 1.4142135623730951}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.export": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.smooth": {"tf": 1}}, "df": 55, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.ScanData.ScanData.Buffer.Component.size": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 3.1622776601683795}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 3.1622776601683795}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"3": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}}, "df": 2}}, "docs": {"three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Tasks.CloseProject.CloseProject": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Three.open_project": {"tf": 1}, "three.MF.V3.Three.close_project": {"tf": 1}, "three.MF.V3.Three.copy_groups": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.scan_data": {"tf": 1}, "three.MF.V3.Three.set_project": {"tf": 1}, "three.MF.V3.Three.import_file": {"tf": 1}, "three.scanner.Scanner.close_project": {"tf": 1}, "three.scanner.Scanner.copy_groups": {"tf": 1}, "three.scanner.Scanner.import_file": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.open_project": {"tf": 1}, "three.scanner.Scanner.scan_data": {"tf": 1}, "three.scanner.Scanner.set_project": {"tf": 1}}, "df": 23, "g": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "v": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.OpenProject.OpenProject.Request": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer.TextureOpacity": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}}, "df": 3}}, "[": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "y": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 2, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}}, "df": 1}}}}}}}, "n": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.7320508075688772}, "three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}}, "df": 29, "e": {"docs": {"three.MF.V3.Descriptors.ScanCapture.ScanCapture": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo.Space": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 15}, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {"three.MF.V3.Descriptors.Settings.Projector.Projector.On": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Three.flatten_group": {"tf": 1}, "three.MF.V3.Three.connect_scanner": {"tf": 1}, "three.MF.V3.Three.disconnect_scanner": {"tf": 1}, "three.MF.V3.Three.get_scanner_status": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.remove_scanner_projects": {"tf": 1}, "three.MF.V3.Three.download_scanner_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.connect_scanner": {"tf": 1}, "three.scanner.Scanner.disconnect_scanner": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.download_scanner_project": {"tf": 1}, "three.scanner.Scanner.flatten_group": {"tf": 1}, "three.scanner.Scanner.get_scanner_status": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.remove_scanner_projects": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 36}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Three.merge": {"tf": 1}, "three.MF.V3.Three.detect_calibration_card": {"tf": 1}, "three.MF.V3.Three.set_cameras": {"tf": 1}, "three.MF.V3.Three.auto_focus": {"tf": 1}, "three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.scanner.Scanner.auto_focus": {"tf": 1}, "three.scanner.Scanner.detect_calibration_card": {"tf": 1}, "three.scanner.Scanner.merge": {"tf": 1}, "three.scanner.Scanner.set_cameras": {"tf": 1}}, "df": 23, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Projector.Projector.Orientation": {"tf": 1}}, "df": 1}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}}, "df": 3}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.OutlierRemoval": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.OutlierRemoval": {"tf": 1}}, "df": 3, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}}, "df": 1}}}}}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}, "three.MF.V3.Tasks.AddMergeToProject.AddMergeToProject": {"tf": 1}, "three.MF.V3.Tasks.Align.Align": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 1}, "three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.CalibrateTurntable.CalibrateTurntable": {"tf": 1}, "three.MF.V3.Tasks.CalibrationCaptureTargets.CalibrationCaptureTargets": {"tf": 1}, "three.MF.V3.Tasks.CameraCalibration.CameraCalibration": {"tf": 1}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}, "three.MF.V3.Tasks.DepthMap.DepthMap": {"tf": 1}, "three.MF.V3.Tasks.DisconnectScanner.DisconnectScanner": {"tf": 1}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1}, "three.MF.V3.Tasks.FlattenGroup.FlattenGroup": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup": {"tf": 1}, "three.MF.V3.Tasks.NewGroup.NewGroup": {"tf": 1}, "three.MF.V3.Tasks.NewProject.NewProject": {"tf": 1}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.OpenProject.OpenProject": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.RemoveGroups.RemoveGroups": {"tf": 1}, "three.MF.V3.Tasks.RemoveProjects.RemoveProjects": {"tf": 1}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1}, "three.MF.V3.Tasks.SplitGroup.SplitGroup": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}, "three.MF.V3.Tasks.TransformGroup.TransformGroup": {"tf": 1}, "three.MF.V3.Tasks.TurntableCalibration.TurntableCalibration": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 60}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 2, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.BoundingBox.BoundingBox.selection": {"tf": 1}, "three.scanner.Scanner.Connect": {"tf": 1}, "three.scanner.Scanner.IsConnected": {"tf": 1}}, "df": 3}}}}}}}}, "b": {"docs": {}, "df": 0, "j": {"docs": {"three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportMerge.ExportMerge": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.Import.Import": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}}, "df": 4, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.scanner.Scanner.__init__": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}, "three.serialization.TO_JSON": {"tf": 2}}, "df": 3}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}}, "df": 1}}}}}}}, "v": {"3": {"docs": {"three.MF.V3.Descriptors.Project.Project": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Brief": {"tf": 1}, "three.MF.V3.Descriptors.Project.Project.Group": {"tf": 1}, "three.MF.V3.Descriptors.Transform.Transform": {"tf": 1}}, "df": 4}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Descriptors.Transform.Transform.__init__": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.Group.Group.collapsed": {"tf": 1.7320508075688772}, "three.MF.V3.Settings.NewGroup.NewGroup.collapsed": {"tf": 1.7320508075688772}}, "df": 3, "s": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.Scan": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices": {"tf": 1}, "three.MF.V3.Settings.RemoveVertices.RemoveVertices": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {"three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.Scan": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2}, "three.MF.V3.Tasks.MergeData.MergeData": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 2.449489742783178}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 8}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Tasks.GetProtocolInfo.GetProtocolInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Three.get_protocol_info": {"tf": 1}, "three.scanner.Scanner.get_protocol_info": {"tf": 1}}, "df": 5, "s": {"docs": {"three.MF.V3.Tasks.SystemInfo.SystemInfo": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.VideoFrame.VideoFrame": {"tf": 1}, "three.MF.V3.Settings.Video.Video": {"tf": 1}, "three.MF.V3.Settings.Video.Video.Codec": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.StopVideo.StopVideo": {"tf": 1}, "three.MF.V3.Three.start_video": {"tf": 1}, "three.MF.V3.Three.stop_video": {"tf": 1}, "three.scanner.Scanner.start_video": {"tf": 1}, "three.scanner.Scanner.stop_video": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Tutorials.Tutorials.Viewed.Pages": {"tf": 1}, "three.MF.V3.Settings.Tutorials.Tutorials.Viewed": {"tf": 1}}, "df": 3}, "r": {"docs": {"three.MF.V3.Descriptors.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Settings.Viewer.Viewer": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 7}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.BoundingBox.BoundingBox": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Export.Export": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.Merge.Merge": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.NewScan.NewScan": {"tf": 1}, "three.MF.V3.Tasks.SetGroup.SetGroup": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProject.SetProject": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 9}}}}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 3}}}}}}}, "a": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.SendTask": {"tf": 1}}, "df": 2}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Descriptors.Settings.Camera.Camera.Focus.Value": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Settings.AutoFocus.AutoFocus.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.6457513110645907}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 3.7416573867739413}, "three.MF.V3.Tasks.SetCameras.SetCameras": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.SetProjector.SetProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 3.7416573867739413}}, "df": 21, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Three.clear_settings": {"tf": 1}, "three.scanner.Scanner.clear_settings": {"tf": 1}}, "df": 3}}}}}}, "x": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}}, "df": 2}, "y": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.size": {"tf": 1}, "three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}}, "df": 2, "u": {"docs": {}, "df": 0, "v": {"4": {"2": {"0": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Advanced.Advanced.Use": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Advanced.Advanced.Camera.UseContinuousExposureValues": {"tf": 1}, "three.MF.V3.Descriptors.Settings.Turntable.Turntable.Use": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.MoveGroup.MoveGroup.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 11, "d": {"docs": {"three.MF.V3.Descriptors.BoundingBox.BoundingBox.rotation": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.NormalEstimation.method": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}}, "df": 7}, "r": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.ScanSelection.ScanSelection.mode": {"tf": 1}, "three.MF.V3.Tasks.CalibrateCameras.CalibrateCameras": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.ProjectActions.ProjectActions": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 3, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}, "three.MF.V3.Settings.Project.Project.__init__": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.kernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.kernelRadius": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"three.MF.V3.Settings.Import.Import.Unit": {"tf": 1}, "three.MF.V3.Tasks.Import.Import": {"tf": 1.7320508075688772}}, "df": 2}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Settings.NewGroup.NewGroup.parentIndex": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.sourceIndexes": {"tf": 1}, "three.MF.V3.Settings.CopyGroups.CopyGroups.targetIndex": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}, "three.MF.V3.Settings.NewGroup.NewGroup.__init__": {"tf": 1}}, "df": 4}}}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.CopyGroups.CopyGroups.childPosition": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.SetProcessingDevices.SetProcessingDevices": {"tf": 1}}, "df": 1}}}}}}}}}, "p": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}, "three.MF.V3.Three.update_settings": {"tf": 1}, "three.scanner.Scanner.update_settings": {"tf": 1}}, "df": 3, "d": {"docs": {"three.MF.V3.Descriptors.ProjectActions.ProjectAction.task": {"tf": 1}, "three.MF.V3.Descriptors.RemoveVertices.RemoveVertices.scans": {"tf": 1}}, "df": 2}, "s": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Task.Task": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1}, "three.MF.V3.Three.upload_project": {"tf": 1}, "three.scanner.Scanner.upload_project": {"tf": 1}}, "df": 3, "s": {"docs": {"three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1}}, "df": 1}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.UploadProject.UploadProject": {"tf": 1.7320508075688772}, "three.MF.V3.Tasks.UploadProject.UploadProject.Request": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Response": {"tf": 1}, "three.MF.V3.Tasks.UploadProject.UploadProject.Buffer": {"tf": 1}}, "df": 4}}}}}}}}}}}}, "v": {"docs": {"three.MF.V3.Tasks.MergeData.MergeData": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ScanData.ScanData": {"tf": 1.4142135623730951}}, "df": 2}, "r": {"docs": {}, "df": 0, "i": {"docs": {"three.scanner.Scanner.Connect": {"tf": 1.7320508075688772}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Request.Type": {"tf": 1}, "three.MF.V3.Tasks.DetectCalibrationCard.DetectCalibrationCard.Response.Type": {"tf": 1}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.Calibration.CaptureTarget.camera": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Descriptors.Settings.I18n.I18n.Language": {"tf": 1}, "three.MF.V3.Settings.I18n.I18n": {"tf": 1}, "three.MF.V3.Tasks.ClearSettings.ClearSettings": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1}, "three.MF.V3.Tasks.PopSettings.PopSettings": {"tf": 1}, "three.MF.V3.Tasks.PushSettings.PushSettings": {"tf": 1}, "three.MF.V3.Tasks.UpdateSettings.UpdateSettings": {"tf": 1}}, "df": 8, "s": {"docs": {"three.MF.V3.Settings.I18n.I18n.Language": {"tf": 1}}, "df": 1}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}}, "df": 6}}}}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurStdDev": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurStdDev": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.Smooth.Smooth": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "o": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}}, "df": 1, "n": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Descriptors.ScannerList.ScannerList": {"tf": 1}, "three.MF.V3.Descriptors.StorageInfo.StorageInfo": {"tf": 1}, "three.MF.V3.Tasks.ConnectScanner.ConnectScanner": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.DownloadScannerProject.DownloadScannerProject": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.PullProject.PullProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.PushProject.PushProject": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.RemoveScannerProjects.RemoveScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.StorageInfo.StorageInfo": {"tf": 1.4142135623730951}, "three.MF.V3.Three.push_project": {"tf": 1}, "three.MF.V3.Three.pull_project": {"tf": 1}, "three.MF.V3.Three.storage_info": {"tf": 1}, "three.MF.V3.Three.discover_scanners": {"tf": 1}, "three.scanner.Scanner.discover_scanners": {"tf": 1}, "three.scanner.Scanner.pull_project": {"tf": 1}, "three.scanner.Scanner.push_project": {"tf": 1}, "three.scanner.Scanner.storage_info": {"tf": 1}}, "df": 18}}}, "w": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ExportFactoryCalibrationLogs.ExportFactoryCalibrationLogs": {"tf": 1}, "three.MF.V3.Tasks.ExportLogs.ExportLogs": {"tf": 1}, "three.MF.V3.Three.export_logs": {"tf": 1}, "three.MF.V3.Three.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_factory_calibration_logs": {"tf": 1}, "three.scanner.Scanner.export_logs": {"tf": 1}}, "df": 6}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Settings.Projector.Projector.Pattern": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1}, "three.MF.V3.Three.list_network_interfaces": {"tf": 1}, "three.MF.V3.Three.list_wifi": {"tf": 1}, "three.MF.V3.Three.list_projects": {"tf": 1}, "three.MF.V3.Three.list_groups": {"tf": 1}, "three.MF.V3.Three.list_scans": {"tf": 1}, "three.MF.V3.Three.list_export_formats": {"tf": 1}, "three.MF.V3.Three.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_export_formats": {"tf": 1}, "three.scanner.Scanner.list_groups": {"tf": 1}, "three.scanner.Scanner.list_network_interfaces": {"tf": 1}, "three.scanner.Scanner.list_projects": {"tf": 1}, "three.scanner.Scanner.list_scanner_projects": {"tf": 1}, "three.scanner.Scanner.list_scans": {"tf": 1}, "three.scanner.Scanner.list_wifi": {"tf": 1}}, "df": 21, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListExportFormats.ListExportFormats": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Request": {"tf": 1}, "three.MF.V3.Tasks.ListExportFormats.ListExportFormats.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListGroups.ListGroups": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListGroups.ListGroups.Request": {"tf": 1}, "three.MF.V3.Tasks.ListGroups.ListGroups.Response": {"tf": 1}}, "df": 3}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Request": {"tf": 1}, "three.MF.V3.Tasks.ListNetworkInterfaces.ListNetworkInterfaces.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListProjects.ListProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListProjects.ListProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListProjects.ListProjects.Response": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}}, "df": 4}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScannerProjects.ListScannerProjects.Response": {"tf": 1}}, "df": 3}}}}}}}}}}}, "s": {"docs": {"three.MF.V3.Tasks.ListScans.ListScans": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListScans.ListScans.Request": {"tf": 1}, "three.MF.V3.Tasks.ListScans.ListScans.Response": {"tf": 1}}, "df": 3}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.ListSettings.ListSettings": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListSettings.ListSettings.Request": {"tf": 1}, "three.MF.V3.Tasks.ListSettings.ListSettings.Response": {"tf": 1}}, "df": 3}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {"three.MF.V3.Tasks.ListWifi.ListWifi": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.ListWifi.ListWifi.Request": {"tf": 1}, "three.MF.V3.Tasks.ListWifi.ListWifi.Response": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}}}}, "h": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "o": {"docs": {}, "df": 0, "w": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.__init__": {"tf": 1}, "three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Tasks.DiscoverScanners.DiscoverScanners": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.GetScannerStatus.GetScannerStatus": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1}, "three.MF.V3.Three.has_cameras": {"tf": 1}, "three.MF.V3.Three.has_projector": {"tf": 1}, "three.scanner.Scanner.has_cameras": {"tf": 1}, "three.scanner.Scanner.has_projector": {"tf": 1}}, "df": 7, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"three.MF.V3.Tasks.HasCameras.HasCameras": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasCameras.HasCameras.Request": {"tf": 1}, "three.MF.V3.Tasks.HasCameras.HasCameras.Response": {"tf": 1}}, "df": 3}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"three.MF.V3.Tasks.HasProjector.HasProjector": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasProjector.HasProjector.Request": {"tf": 1}, "three.MF.V3.Tasks.HasProjector.HasProjector.Response": {"tf": 1}}, "df": 3}}}}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Tasks.HasTurntable.HasTurntable": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Request": {"tf": 1}, "three.MF.V3.Tasks.HasTurntable.HasTurntable.Response": {"tf": 1}, "three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 5}}}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"three.MF.V3.Descriptors.Settings.Software.Software.UpdateMajor": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection": {"tf": 1}, "three.MF.V3.Settings.Smooth.Smooth.Taubin.lambda_": {"tf": 1}, "three.MF.V3.Tasks.CopyGroups.CopyGroups": {"tf": 1}}, "df": 4}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"three.scanner.Scanner": {"tf": 1.4142135623730951}, "three.scanner.Scanner.__init__": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"three.MF.V3.Descriptors.Calibration.DetectedCard.Target.match": {"tf": 1.4142135623730951}}, "df": 1}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"three.MF.V3.Descriptors.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Settings.Export.Export.Color": {"tf": 1}, "three.MF.V3.Settings.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 1}, "three.MF.V3.Three.heat_map": {"tf": 1}, "three.scanner.Scanner.heat_map": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Tasks.ExportHeatMap.ExportHeatMap": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap": {"tf": 2.23606797749979}, "three.MF.V3.Tasks.HeatMap.HeatMap.Request": {"tf": 1}, "three.MF.V3.Tasks.HeatMap.HeatMap.Response": {"tf": 1}, "three.MF.V3.Three.export_heat_map": {"tf": 1}, "three.scanner.Scanner.export_heat_map": {"tf": 1}}, "df": 6}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"three.scanner.Scanner": {"tf": 1}, "three.scanner.Scanner.__init__": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}}, "df": 1, "t": {"docs": {"three.MF.V3.Tasks.AutoFocus.AutoFocus": {"tf": 2.449489742783178}, "three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 1.4142135623730951}, "three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 3}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}}}}, "k": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"three.MF.V3.Descriptors.ProtocolInfo.ProtocolInfo.version": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.EdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Advanced.Advanced.PhaseFilter.__init__": {"tf": 1.4142135623730951}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.laplacianKernelRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseEdgeDetection.gaussianBlurRadius": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.PhaseFilter.__init__": {"tf": 1.4142135623730951}}, "df": 6}}}}, "e": {"docs": {}, "df": 0, "p": {"docs": {"three.MF.V3.Settings.Advanced.Advanced.AdaptiveSampling": {"tf": 1}, "three.MF.V3.Settings.Scan.Scan.Processing.AdaptiveSampling": {"tf": 1}}, "df": 2}}}}, "j": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.CaptureImage.CaptureImage": {"tf": 2.8284271247461903}}, "df": 1}, "e": {"docs": {}, "df": 0, "g": {"docs": {"three.MF.V3.Tasks.StartVideo.StartVideo": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"three.serialization.TO_JSON": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/docs/three.html b/docs/three.html index a28ec11..e9e0d67 100644 --- a/docs/three.html +++ b/docs/three.html @@ -3,14 +3,14 @@ - + three API documentation - + @@ -52,7 +52,7 @@

-
1__version__ = '11.7.2'
+                        
1__version__ = '11.7.3'
 
diff --git a/docs/three/MF.html b/docs/three/MF.html index f8471e8..95b5105 100644 --- a/docs/three/MF.html +++ b/docs/three/MF.html @@ -3,14 +3,14 @@ - + three.MF API documentation - +
diff --git a/docs/three/MF/V3.html b/docs/three/MF/V3.html index bb5b6f9..7247f79 100644 --- a/docs/three/MF/V3.html +++ b/docs/three/MF/V3.html @@ -3,14 +3,14 @@ - + three.MF.V3 API documentation - + diff --git a/docs/three/MF/V3/Buffer.html b/docs/three/MF/V3/Buffer.html index e81e75a..18c4497 100644 --- a/docs/three/MF/V3/Buffer.html +++ b/docs/three/MF/V3/Buffer.html @@ -3,14 +3,14 @@ - + three.MF.V3.Buffer API documentation - + @@ -279,7 +279,7 @@

- Buffer( Index: int, Size: int, Task: MF.V3.Task.Task, Descriptor: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None) + Buffer( Index: int, Size: int, Task: MF.V3.Task.Task, Descriptor: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None) diff --git a/docs/three/MF/V3/Descriptors.html b/docs/three/MF/V3/Descriptors.html index 8c1282d..0397cf3 100644 --- a/docs/three/MF/V3/Descriptors.html +++ b/docs/three/MF/V3/Descriptors.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors API documentation - +
@@ -78,13 +83,18 @@

7from MF.V3.Descriptors.Merge import * 8from MF.V3.Descriptors.Project import * 9from MF.V3.Descriptors.ProjectActions import * -10from MF.V3.Descriptors.RemoveVertices import * -11from MF.V3.Descriptors.ScanData import * -12from MF.V3.Descriptors.Software import * -13from MF.V3.Descriptors.System import * -14from MF.V3.Descriptors.Transform import * -15from MF.V3.Descriptors.VideoFrame import * -16from MF.V3.Descriptors.Wifi import * +10from MF.V3.Descriptors.ProtocolInfo import * +11from MF.V3.Descriptors.RemoveVertices import * +12from MF.V3.Descriptors.ScanCapture import * +13from MF.V3.Descriptors.ScanData import * +14from MF.V3.Descriptors.ScannerList import * +15from MF.V3.Descriptors.ScannerStatus import * +16from MF.V3.Descriptors.Software import * +17from MF.V3.Descriptors.StorageInfo import * +18from MF.V3.Descriptors.System import * +19from MF.V3.Descriptors.Transform import * +20from MF.V3.Descriptors.VideoFrame import * +21from MF.V3.Descriptors.Wifi import * diff --git a/docs/three/MF/V3/Descriptors/BoundingBox.html b/docs/three/MF/V3/Descriptors/BoundingBox.html index 333a3b0..4da360b 100644 --- a/docs/three/MF/V3/Descriptors/BoundingBox.html +++ b/docs/three/MF/V3/Descriptors/BoundingBox.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.BoundingBox API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Calibration.html b/docs/three/MF/V3/Descriptors/Calibration.html index 6ec7032..cf3bee9 100644 --- a/docs/three/MF/V3/Descriptors/Calibration.html +++ b/docs/three/MF/V3/Descriptors/Calibration.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Calibration API documentation - + diff --git a/docs/three/MF/V3/Descriptors/CaptureImage.html b/docs/three/MF/V3/Descriptors/CaptureImage.html index ecc87eb..a323b1f 100644 --- a/docs/three/MF/V3/Descriptors/CaptureImage.html +++ b/docs/three/MF/V3/Descriptors/CaptureImage.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.CaptureImage API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Export.html b/docs/three/MF/V3/Descriptors/Export.html index 2d41791..87d2345 100644 --- a/docs/three/MF/V3/Descriptors/Export.html +++ b/docs/three/MF/V3/Descriptors/Export.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Export API documentation - + diff --git a/docs/three/MF/V3/Descriptors/HeatMap.html b/docs/three/MF/V3/Descriptors/HeatMap.html index 0496d1d..614fede 100644 --- a/docs/three/MF/V3/Descriptors/HeatMap.html +++ b/docs/three/MF/V3/Descriptors/HeatMap.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.HeatMap API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Image.html b/docs/three/MF/V3/Descriptors/Image.html index 9cc1ac1..98436c0 100644 --- a/docs/three/MF/V3/Descriptors/Image.html +++ b/docs/three/MF/V3/Descriptors/Image.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Image API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Import.html b/docs/three/MF/V3/Descriptors/Import.html index 2ddc33d..d4f1a45 100644 --- a/docs/three/MF/V3/Descriptors/Import.html +++ b/docs/three/MF/V3/Descriptors/Import.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Import API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Merge.html b/docs/three/MF/V3/Descriptors/Merge.html index 8d9b706..6d247f1 100644 --- a/docs/three/MF/V3/Descriptors/Merge.html +++ b/docs/three/MF/V3/Descriptors/Merge.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Merge API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Network.html b/docs/three/MF/V3/Descriptors/Network.html index 1758cd6..873c878 100644 --- a/docs/three/MF/V3/Descriptors/Network.html +++ b/docs/three/MF/V3/Descriptors/Network.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Network API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Project.html b/docs/three/MF/V3/Descriptors/Project.html index c95b39a..1f5c05e 100644 --- a/docs/three/MF/V3/Descriptors/Project.html +++ b/docs/three/MF/V3/Descriptors/Project.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Project API documentation - + diff --git a/docs/three/MF/V3/Descriptors/ProjectActions.html b/docs/three/MF/V3/Descriptors/ProjectActions.html index 1ad8535..baa3f93 100644 --- a/docs/three/MF/V3/Descriptors/ProjectActions.html +++ b/docs/three/MF/V3/Descriptors/ProjectActions.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.ProjectActions API documentation - + diff --git a/docs/three/MF/V3/Descriptors/ProtocolInfo.html b/docs/three/MF/V3/Descriptors/ProtocolInfo.html new file mode 100644 index 0000000..b49933e --- /dev/null +++ b/docs/three/MF/V3/Descriptors/ProtocolInfo.html @@ -0,0 +1,376 @@ + + + + + + + three.MF.V3.Descriptors.ProtocolInfo API documentation + + + + + + + + + +
+
+

+three.MF.V3.Descriptors.ProtocolInfo

+ + + + + + +
 1from typing import List
+ 2
+ 3
+ 4class ProtocolInfo:
+ 5    """
+ 6    Desktop-processing protocol capability descriptor, returned by the
+ 7    `GetProtocolInfo` task.  Lets a desktop engine detect what a connected
+ 8    scanner supports and degrade gracefully against older firmware.
+ 9    """
+10    def __init__(self, version: int, capabilities: List[str] = None):
+11        # Desktop-processing protocol version.
+12        self.version = version
+13        """
+14        Capability tokens supported by this server.
+15
+16        Known capabilities:
+17        - "scanCaptureStreaming": the server can stream raw scan captures to a
+18        client for desktop processing (see the `SetProcessingDevices` task
+19        and the `ScanCapture` descriptor).
+20        """
+21        self.capabilities = capabilities
+
+ + +
+
+ +
+ + class + ProtocolInfo: + + + +
+ +
 5class ProtocolInfo:
+ 6    """
+ 7    Desktop-processing protocol capability descriptor, returned by the
+ 8    `GetProtocolInfo` task.  Lets a desktop engine detect what a connected
+ 9    scanner supports and degrade gracefully against older firmware.
+10    """
+11    def __init__(self, version: int, capabilities: List[str] = None):
+12        # Desktop-processing protocol version.
+13        self.version = version
+14        """
+15        Capability tokens supported by this server.
+16
+17        Known capabilities:
+18        - "scanCaptureStreaming": the server can stream raw scan captures to a
+19        client for desktop processing (see the `SetProcessingDevices` task
+20        and the `ScanCapture` descriptor).
+21        """
+22        self.capabilities = capabilities
+
+ + +

Desktop-processing protocol capability descriptor, returned by the +GetProtocolInfo task. Lets a desktop engine detect what a connected +scanner supports and degrade gracefully against older firmware.

+
+ + +
+ +
+ + ProtocolInfo(version: int, capabilities: List[str] = None) + + + +
+ +
11    def __init__(self, version: int, capabilities: List[str] = None):
+12        # Desktop-processing protocol version.
+13        self.version = version
+14        """
+15        Capability tokens supported by this server.
+16
+17        Known capabilities:
+18        - "scanCaptureStreaming": the server can stream raw scan captures to a
+19        client for desktop processing (see the `SetProcessingDevices` task
+20        and the `ScanCapture` descriptor).
+21        """
+22        self.capabilities = capabilities
+
+ + + + +
+
+
+ version + + +
+ + +

Capability tokens supported by this server.

+ +

Known capabilities:

+ +
    +
  • "scanCaptureStreaming": the server can stream raw scan captures to a +client for desktop processing (see the SetProcessingDevices task +and the ScanCapture descriptor).
  • +
+
+ + +
+
+
+ capabilities + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Descriptors/RemoveVertices.html b/docs/three/MF/V3/Descriptors/RemoveVertices.html index d87e1b7..8c710fe 100644 --- a/docs/three/MF/V3/Descriptors/RemoveVertices.html +++ b/docs/three/MF/V3/Descriptors/RemoveVertices.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.RemoveVertices API documentation - + diff --git a/docs/three/MF/V3/Descriptors/ScanCapture.html b/docs/three/MF/V3/Descriptors/ScanCapture.html new file mode 100644 index 0000000..e112990 --- /dev/null +++ b/docs/three/MF/V3/Descriptors/ScanCapture.html @@ -0,0 +1,551 @@ + + + + + + + three.MF.V3.Descriptors.ScanCapture API documentation + + + + + + + + + +
+
+

+three.MF.V3.Descriptors.ScanCapture

+ + + + + + +
 1class ScanCapture:
+ 2    """
+ 3    Raw scan capture image descriptor streamed to clients that process scans
+ 4    themselves (`SetProcessingDevices` client processing).  Each stereo capture
+ 5    is sent as two buffers, one per camera, described by this descriptor.
+ 6
+ 7    The buffer payload is the raw image data: `rows` rows of `step` bytes,
+ 8    pixel format given by the OpenCV type code in `type`.
+ 9    """
+10    def __init__(self, rows: int, cols: int, type: int, step: int, camera: int, focus: int, index: int, orientation: int, frequency: int, phase: int, angle: float, texture: bool):
+11        # Image rows.
+12        self.rows = rows
+13        # Image columns.
+14        self.cols = cols
+15        # OpenCV Mat type code (e.g. CV_8UC1).
+16        self.type = type
+17        # Row step in bytes.
+18        self.step = step
+19        # Camera index (0 or 1).
+20        self.camera = camera
+21        # Camera focus.
+22        self.focus = focus
+23        # Capture (turntable angle) index.
+24        self.index = index
+25        # Pattern orientation, or -1 for texture captures.
+26        self.orientation = orientation
+27        # Pattern frequency, or -1 for texture captures.
+28        self.frequency = frequency
+29        # Pattern phase, or -1 for texture captures.
+30        self.phase = phase
+31        # Turntable angle in radians.
+32        self.angle = angle
+33        # True if this is a texture capture.
+34        self.texture = texture
+
+ + +
+
+ +
+ + class + ScanCapture: + + + +
+ +
 2class ScanCapture:
+ 3    """
+ 4    Raw scan capture image descriptor streamed to clients that process scans
+ 5    themselves (`SetProcessingDevices` client processing).  Each stereo capture
+ 6    is sent as two buffers, one per camera, described by this descriptor.
+ 7
+ 8    The buffer payload is the raw image data: `rows` rows of `step` bytes,
+ 9    pixel format given by the OpenCV type code in `type`.
+10    """
+11    def __init__(self, rows: int, cols: int, type: int, step: int, camera: int, focus: int, index: int, orientation: int, frequency: int, phase: int, angle: float, texture: bool):
+12        # Image rows.
+13        self.rows = rows
+14        # Image columns.
+15        self.cols = cols
+16        # OpenCV Mat type code (e.g. CV_8UC1).
+17        self.type = type
+18        # Row step in bytes.
+19        self.step = step
+20        # Camera index (0 or 1).
+21        self.camera = camera
+22        # Camera focus.
+23        self.focus = focus
+24        # Capture (turntable angle) index.
+25        self.index = index
+26        # Pattern orientation, or -1 for texture captures.
+27        self.orientation = orientation
+28        # Pattern frequency, or -1 for texture captures.
+29        self.frequency = frequency
+30        # Pattern phase, or -1 for texture captures.
+31        self.phase = phase
+32        # Turntable angle in radians.
+33        self.angle = angle
+34        # True if this is a texture capture.
+35        self.texture = texture
+
+ + +

Raw scan capture image descriptor streamed to clients that process scans +themselves (SetProcessingDevices client processing). Each stereo capture +is sent as two buffers, one per camera, described by this descriptor.

+ +

The buffer payload is the raw image data: rows rows of step bytes, +pixel format given by the OpenCV type code in type.

+
+ + +
+ +
+ + ScanCapture( rows: int, cols: int, type: int, step: int, camera: int, focus: int, index: int, orientation: int, frequency: int, phase: int, angle: float, texture: bool) + + + +
+ +
11    def __init__(self, rows: int, cols: int, type: int, step: int, camera: int, focus: int, index: int, orientation: int, frequency: int, phase: int, angle: float, texture: bool):
+12        # Image rows.
+13        self.rows = rows
+14        # Image columns.
+15        self.cols = cols
+16        # OpenCV Mat type code (e.g. CV_8UC1).
+17        self.type = type
+18        # Row step in bytes.
+19        self.step = step
+20        # Camera index (0 or 1).
+21        self.camera = camera
+22        # Camera focus.
+23        self.focus = focus
+24        # Capture (turntable angle) index.
+25        self.index = index
+26        # Pattern orientation, or -1 for texture captures.
+27        self.orientation = orientation
+28        # Pattern frequency, or -1 for texture captures.
+29        self.frequency = frequency
+30        # Pattern phase, or -1 for texture captures.
+31        self.phase = phase
+32        # Turntable angle in radians.
+33        self.angle = angle
+34        # True if this is a texture capture.
+35        self.texture = texture
+
+ + + + +
+
+
+ rows + + +
+ + + + +
+
+
+ cols + + +
+ + + + +
+
+
+ type + + +
+ + + + +
+
+
+ step + + +
+ + + + +
+
+
+ camera + + +
+ + + + +
+
+
+ focus + + +
+ + + + +
+
+
+ index + + +
+ + + + +
+
+
+ orientation + + +
+ + + + +
+
+
+ frequency + + +
+ + + + +
+
+
+ phase + + +
+ + + + +
+
+
+ angle + + +
+ + + + +
+
+
+ texture + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Descriptors/ScanData.html b/docs/three/MF/V3/Descriptors/ScanData.html index 67eef8e..17e2eae 100644 --- a/docs/three/MF/V3/Descriptors/ScanData.html +++ b/docs/three/MF/V3/Descriptors/ScanData.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.ScanData API documentation - + diff --git a/docs/three/MF/V3/Descriptors/ScannerList.html b/docs/three/MF/V3/Descriptors/ScannerList.html new file mode 100644 index 0000000..440a9bd --- /dev/null +++ b/docs/three/MF/V3/Descriptors/ScannerList.html @@ -0,0 +1,497 @@ + + + + + + + three.MF.V3.Descriptors.ScannerList API documentation + + + + + + + + + +
+
+

+three.MF.V3.Descriptors.ScannerList

+ + + + + + +
 1from typing import List
+ 2
+ 3
+ 4class ScannerList:
+ 5    """
+ 6    Scanners discovered on the local network, returned by the
+ 7    `DiscoverScanners` task.
+ 8    """
+ 9    class Scanner:
+10
+11        """
+12         A discovered scanner.
+13        """
+14        def __init__(self, name: str, host: str, ip: str, port: int, version: str):
+15            # The scanner's advertised name (e.g. "THREE").
+16            self.name = name
+17            # The scanner's mDNS host name (e.g. "matterandform.local").
+18            self.host = host
+19            # The scanner's IPv4 address.
+20            self.ip = ip
+21            # The scanner's server port.
+22            self.port = port
+23            # The scanner's advertised server version.  Empty if not advertised.
+24            self.version = version
+25
+26    def __init__(self, scanners: List['Scanner'] = None):
+27        # The discovered scanners.
+28        self.scanners = scanners
+
+ + +
+
+ +
+ + class + ScannerList: + + + +
+ +
 5class ScannerList:
+ 6    """
+ 7    Scanners discovered on the local network, returned by the
+ 8    `DiscoverScanners` task.
+ 9    """
+10    class Scanner:
+11
+12        """
+13         A discovered scanner.
+14        """
+15        def __init__(self, name: str, host: str, ip: str, port: int, version: str):
+16            # The scanner's advertised name (e.g. "THREE").
+17            self.name = name
+18            # The scanner's mDNS host name (e.g. "matterandform.local").
+19            self.host = host
+20            # The scanner's IPv4 address.
+21            self.ip = ip
+22            # The scanner's server port.
+23            self.port = port
+24            # The scanner's advertised server version.  Empty if not advertised.
+25            self.version = version
+26
+27    def __init__(self, scanners: List['Scanner'] = None):
+28        # The discovered scanners.
+29        self.scanners = scanners
+
+ + +

Scanners discovered on the local network, returned by the +DiscoverScanners task.

+
+ + +
+ +
+ + ScannerList( scanners: List[ScannerList.Scanner] = None) + + + +
+ +
27    def __init__(self, scanners: List['Scanner'] = None):
+28        # The discovered scanners.
+29        self.scanners = scanners
+
+ + + + +
+
+
+ scanners + + +
+ + + + +
+
+
+ +
+ + class + ScannerList.Scanner: + + + +
+ +
10    class Scanner:
+11
+12        """
+13         A discovered scanner.
+14        """
+15        def __init__(self, name: str, host: str, ip: str, port: int, version: str):
+16            # The scanner's advertised name (e.g. "THREE").
+17            self.name = name
+18            # The scanner's mDNS host name (e.g. "matterandform.local").
+19            self.host = host
+20            # The scanner's IPv4 address.
+21            self.ip = ip
+22            # The scanner's server port.
+23            self.port = port
+24            # The scanner's advertised server version.  Empty if not advertised.
+25            self.version = version
+
+ + +

A discovered scanner.

+
+ + +
+ +
+ + ScannerList.Scanner(name: str, host: str, ip: str, port: int, version: str) + + + +
+ +
15        def __init__(self, name: str, host: str, ip: str, port: int, version: str):
+16            # The scanner's advertised name (e.g. "THREE").
+17            self.name = name
+18            # The scanner's mDNS host name (e.g. "matterandform.local").
+19            self.host = host
+20            # The scanner's IPv4 address.
+21            self.ip = ip
+22            # The scanner's server port.
+23            self.port = port
+24            # The scanner's advertised server version.  Empty if not advertised.
+25            self.version = version
+
+ + + + +
+
+
+ name + + +
+ + + + +
+
+
+ host + + +
+ + + + +
+
+
+ ip + + +
+ + + + +
+
+
+ port + + +
+ + + + +
+
+
+ version + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Descriptors/ScannerStatus.html b/docs/three/MF/V3/Descriptors/ScannerStatus.html new file mode 100644 index 0000000..951d957 --- /dev/null +++ b/docs/three/MF/V3/Descriptors/ScannerStatus.html @@ -0,0 +1,345 @@ + + + + + + + three.MF.V3.Descriptors.ScannerStatus API documentation + + + + + + + + + +
+
+

+three.MF.V3.Descriptors.ScannerStatus

+ + + + + + +
 1class ScannerStatus:
+ 2    """
+ 3    The desktop engine's scanner connection status.
+ 4
+ 5    Returned by the `GetScannerStatus` task and pushed to every client as a
+ 6    `{"ScannerStatus": {...}}` message whenever the connection state changes.
+ 7    """
+ 8    def __init__(self, connected: bool, host: str):
+ 9        # True if the engine is connected to a scanner.
+10        self.connected = connected
+11        # The connected scanner's host name or IP address.  Empty when not connected.
+12        self.host = host
+
+ + +
+
+ +
+ + class + ScannerStatus: + + + +
+ +
 2class ScannerStatus:
+ 3    """
+ 4    The desktop engine's scanner connection status.
+ 5
+ 6    Returned by the `GetScannerStatus` task and pushed to every client as a
+ 7    `{"ScannerStatus": {...}}` message whenever the connection state changes.
+ 8    """
+ 9    def __init__(self, connected: bool, host: str):
+10        # True if the engine is connected to a scanner.
+11        self.connected = connected
+12        # The connected scanner's host name or IP address.  Empty when not connected.
+13        self.host = host
+
+ + +

The desktop engine's scanner connection status.

+ +

Returned by the GetScannerStatus task and pushed to every client as a +{"ScannerStatus": {...}} message whenever the connection state changes.

+
+ + +
+ +
+ + ScannerStatus(connected: bool, host: str) + + + +
+ +
 9    def __init__(self, connected: bool, host: str):
+10        # True if the engine is connected to a scanner.
+11        self.connected = connected
+12        # The connected scanner's host name or IP address.  Empty when not connected.
+13        self.host = host
+
+ + + + +
+
+
+ connected + + +
+ + + + +
+
+
+ host + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Descriptors/Settings.html b/docs/three/MF/V3/Descriptors/Settings.html index 3a7259a..3b124f6 100644 --- a/docs/three/MF/V3/Descriptors/Settings.html +++ b/docs/three/MF/V3/Descriptors/Settings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Advanced.html b/docs/three/MF/V3/Descriptors/Settings/Advanced.html index 045c090..d489aae 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Advanced.html +++ b/docs/three/MF/V3/Descriptors/Settings/Advanced.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Advanced API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Camera.html b/docs/three/MF/V3/Descriptors/Settings/Camera.html index ef85e28..92bcb0a 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Camera.html +++ b/docs/three/MF/V3/Descriptors/Settings/Camera.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Camera API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Capture.html b/docs/three/MF/V3/Descriptors/Settings/Capture.html index a7ceacc..891bd68 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Capture.html +++ b/docs/three/MF/V3/Descriptors/Settings/Capture.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Capture API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/I18n.html b/docs/three/MF/V3/Descriptors/Settings/I18n.html index 01b015f..e04c140 100644 --- a/docs/three/MF/V3/Descriptors/Settings/I18n.html +++ b/docs/three/MF/V3/Descriptors/Settings/I18n.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.I18n API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Projector.html b/docs/three/MF/V3/Descriptors/Settings/Projector.html index abc359b..ff07c50 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Projector.html +++ b/docs/three/MF/V3/Descriptors/Settings/Projector.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Projector API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Scanner.html b/docs/three/MF/V3/Descriptors/Settings/Scanner.html index ce7b3c1..830bfad 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Scanner.html +++ b/docs/three/MF/V3/Descriptors/Settings/Scanner.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Scanner API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Software.html b/docs/three/MF/V3/Descriptors/Settings/Software.html index 35fb80d..a3a3186 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Software.html +++ b/docs/three/MF/V3/Descriptors/Settings/Software.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Software API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Style.html b/docs/three/MF/V3/Descriptors/Settings/Style.html index 6e22ce8..f247fb3 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Style.html +++ b/docs/three/MF/V3/Descriptors/Settings/Style.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Style API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Turntable.html b/docs/three/MF/V3/Descriptors/Settings/Turntable.html index 17a1889..e64f56c 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Turntable.html +++ b/docs/three/MF/V3/Descriptors/Settings/Turntable.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Turntable API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Tutorials.html b/docs/three/MF/V3/Descriptors/Settings/Tutorials.html index fc135af..a2dc849 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Tutorials.html +++ b/docs/three/MF/V3/Descriptors/Settings/Tutorials.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Tutorials API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Settings/Viewer.html b/docs/three/MF/V3/Descriptors/Settings/Viewer.html index 4160067..0aa995f 100644 --- a/docs/three/MF/V3/Descriptors/Settings/Viewer.html +++ b/docs/three/MF/V3/Descriptors/Settings/Viewer.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Settings.Viewer API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Software.html b/docs/three/MF/V3/Descriptors/Software.html index 31bc94a..fb5dde3 100644 --- a/docs/three/MF/V3/Descriptors/Software.html +++ b/docs/three/MF/V3/Descriptors/Software.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Software API documentation - + diff --git a/docs/three/MF/V3/Descriptors/StorageInfo.html b/docs/three/MF/V3/Descriptors/StorageInfo.html new file mode 100644 index 0000000..ca44d95 --- /dev/null +++ b/docs/three/MF/V3/Descriptors/StorageInfo.html @@ -0,0 +1,448 @@ + + + + + + + three.MF.V3.Descriptors.StorageInfo API documentation + + + + + + + + + +
+
+

+three.MF.V3.Descriptors.StorageInfo

+ + + + + + +
 1class StorageInfo:
+ 2    """
+ 3    Storage space of the desktop engine's local workspace and, when a scanner
+ 4    is connected, of the scanner.  Returned by the `StorageInfo` task.
+ 5    """
+ 6    class Space:
+ 7
+ 8        """
+ 9         Storage space of one side.
+10        """
+11        def __init__(self, available: int, capacity: int):
+12            # Available bytes.
+13            self.available = available
+14            # Total capacity in bytes.
+15            self.capacity = capacity
+16
+17    def __init__(self, local: 'Space', scanner: 'Space' = None):
+18        # The engine's local workspace storage.
+19        self.local = local
+20        # The connected scanner's storage.  Absent when no scanner is connected.
+21        self.scanner = scanner
+
+ + +
+
+ +
+ + class + StorageInfo: + + + +
+ +
 2class StorageInfo:
+ 3    """
+ 4    Storage space of the desktop engine's local workspace and, when a scanner
+ 5    is connected, of the scanner.  Returned by the `StorageInfo` task.
+ 6    """
+ 7    class Space:
+ 8
+ 9        """
+10         Storage space of one side.
+11        """
+12        def __init__(self, available: int, capacity: int):
+13            # Available bytes.
+14            self.available = available
+15            # Total capacity in bytes.
+16            self.capacity = capacity
+17
+18    def __init__(self, local: 'Space', scanner: 'Space' = None):
+19        # The engine's local workspace storage.
+20        self.local = local
+21        # The connected scanner's storage.  Absent when no scanner is connected.
+22        self.scanner = scanner
+
+ + +

Storage space of the desktop engine's local workspace and, when a scanner +is connected, of the scanner. Returned by the StorageInfo task.

+
+ + +
+ +
+ + StorageInfo( local: StorageInfo.Space, scanner: StorageInfo.Space = None) + + + +
+ +
18    def __init__(self, local: 'Space', scanner: 'Space' = None):
+19        # The engine's local workspace storage.
+20        self.local = local
+21        # The connected scanner's storage.  Absent when no scanner is connected.
+22        self.scanner = scanner
+
+ + + + +
+
+
+ local + + +
+ + + + +
+
+
+ scanner + + +
+ + + + +
+
+
+ +
+ + class + StorageInfo.Space: + + + +
+ +
 7    class Space:
+ 8
+ 9        """
+10         Storage space of one side.
+11        """
+12        def __init__(self, available: int, capacity: int):
+13            # Available bytes.
+14            self.available = available
+15            # Total capacity in bytes.
+16            self.capacity = capacity
+
+ + +

Storage space of one side.

+
+ + +
+ +
+ + StorageInfo.Space(available: int, capacity: int) + + + +
+ +
12        def __init__(self, available: int, capacity: int):
+13            # Available bytes.
+14            self.available = available
+15            # Total capacity in bytes.
+16            self.capacity = capacity
+
+ + + + +
+
+
+ available + + +
+ + + + +
+
+
+ capacity + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Descriptors/System.html b/docs/three/MF/V3/Descriptors/System.html index 5b209b1..73d4bc8 100644 --- a/docs/three/MF/V3/Descriptors/System.html +++ b/docs/three/MF/V3/Descriptors/System.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.System API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Transform.html b/docs/three/MF/V3/Descriptors/Transform.html index e01cf4a..1584709 100644 --- a/docs/three/MF/V3/Descriptors/Transform.html +++ b/docs/three/MF/V3/Descriptors/Transform.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Transform API documentation - + diff --git a/docs/three/MF/V3/Descriptors/VideoFrame.html b/docs/three/MF/V3/Descriptors/VideoFrame.html index 4d5b74d..a470450 100644 --- a/docs/three/MF/V3/Descriptors/VideoFrame.html +++ b/docs/three/MF/V3/Descriptors/VideoFrame.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.VideoFrame API documentation - + diff --git a/docs/three/MF/V3/Descriptors/Wifi.html b/docs/three/MF/V3/Descriptors/Wifi.html index 10ea1c1..ca3316b 100644 --- a/docs/three/MF/V3/Descriptors/Wifi.html +++ b/docs/three/MF/V3/Descriptors/Wifi.html @@ -3,14 +3,14 @@ - + three.MF.V3.Descriptors.Wifi API documentation - + diff --git a/docs/three/MF/V3/Settings.html b/docs/three/MF/V3/Settings.html index 99a5d9f..f6f4a3b 100644 --- a/docs/three/MF/V3/Settings.html +++ b/docs/three/MF/V3/Settings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings API documentation - + diff --git a/docs/three/MF/V3/Settings/Advanced.html b/docs/three/MF/V3/Settings/Advanced.html index 598a1fb..e744621 100644 --- a/docs/three/MF/V3/Settings/Advanced.html +++ b/docs/three/MF/V3/Settings/Advanced.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Advanced API documentation - + diff --git a/docs/three/MF/V3/Settings/Align.html b/docs/three/MF/V3/Settings/Align.html index d68792d..b8ef979 100644 --- a/docs/three/MF/V3/Settings/Align.html +++ b/docs/three/MF/V3/Settings/Align.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Align API documentation - + diff --git a/docs/three/MF/V3/Settings/AutoFocus.html b/docs/three/MF/V3/Settings/AutoFocus.html index dfd1a09..65fa1e1 100644 --- a/docs/three/MF/V3/Settings/AutoFocus.html +++ b/docs/three/MF/V3/Settings/AutoFocus.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.AutoFocus API documentation - + diff --git a/docs/three/MF/V3/Settings/BoundingBox.html b/docs/three/MF/V3/Settings/BoundingBox.html index 176140a..43925df 100644 --- a/docs/three/MF/V3/Settings/BoundingBox.html +++ b/docs/three/MF/V3/Settings/BoundingBox.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.BoundingBox API documentation - + diff --git a/docs/three/MF/V3/Settings/Camera.html b/docs/three/MF/V3/Settings/Camera.html index 3916c25..d585e75 100644 --- a/docs/three/MF/V3/Settings/Camera.html +++ b/docs/three/MF/V3/Settings/Camera.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Camera API documentation - + diff --git a/docs/three/MF/V3/Settings/Capture.html b/docs/three/MF/V3/Settings/Capture.html index a6250b0..0c3eeda 100644 --- a/docs/three/MF/V3/Settings/Capture.html +++ b/docs/three/MF/V3/Settings/Capture.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Capture API documentation - + diff --git a/docs/three/MF/V3/Settings/CaptureImage.html b/docs/three/MF/V3/Settings/CaptureImage.html index 3c4fb8d..516bb73 100644 --- a/docs/three/MF/V3/Settings/CaptureImage.html +++ b/docs/three/MF/V3/Settings/CaptureImage.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.CaptureImage API documentation - + diff --git a/docs/three/MF/V3/Settings/CopyGroups.html b/docs/three/MF/V3/Settings/CopyGroups.html index c658595..93c3f5c 100644 --- a/docs/three/MF/V3/Settings/CopyGroups.html +++ b/docs/three/MF/V3/Settings/CopyGroups.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.CopyGroups API documentation - + diff --git a/docs/three/MF/V3/Settings/CopyProject.html b/docs/three/MF/V3/Settings/CopyProject.html index f543253..2084916 100644 --- a/docs/three/MF/V3/Settings/CopyProject.html +++ b/docs/three/MF/V3/Settings/CopyProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.CopyProject API documentation - + diff --git a/docs/three/MF/V3/Settings/Export.html b/docs/three/MF/V3/Settings/Export.html index 2bea5e7..88fb933 100644 --- a/docs/three/MF/V3/Settings/Export.html +++ b/docs/three/MF/V3/Settings/Export.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Export API documentation - + diff --git a/docs/three/MF/V3/Settings/Group.html b/docs/three/MF/V3/Settings/Group.html index bb3e05a..35f68b6 100644 --- a/docs/three/MF/V3/Settings/Group.html +++ b/docs/three/MF/V3/Settings/Group.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Group API documentation - + diff --git a/docs/three/MF/V3/Settings/HeatMap.html b/docs/three/MF/V3/Settings/HeatMap.html index 0799ba8..8fd37cd 100644 --- a/docs/three/MF/V3/Settings/HeatMap.html +++ b/docs/three/MF/V3/Settings/HeatMap.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.HeatMap API documentation - + diff --git a/docs/three/MF/V3/Settings/I18n.html b/docs/three/MF/V3/Settings/I18n.html index 0b29c76..8e4ae36 100644 --- a/docs/three/MF/V3/Settings/I18n.html +++ b/docs/three/MF/V3/Settings/I18n.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.I18n API documentation - + diff --git a/docs/three/MF/V3/Settings/Import.html b/docs/three/MF/V3/Settings/Import.html index 37b3495..b397efa 100644 --- a/docs/three/MF/V3/Settings/Import.html +++ b/docs/three/MF/V3/Settings/Import.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Import API documentation - + diff --git a/docs/three/MF/V3/Settings/Merge.html b/docs/three/MF/V3/Settings/Merge.html index 978691f..933fbdb 100644 --- a/docs/three/MF/V3/Settings/Merge.html +++ b/docs/three/MF/V3/Settings/Merge.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Merge API documentation - + diff --git a/docs/three/MF/V3/Settings/NewGroup.html b/docs/three/MF/V3/Settings/NewGroup.html index 36fdd27..1b6704f 100644 --- a/docs/three/MF/V3/Settings/NewGroup.html +++ b/docs/three/MF/V3/Settings/NewGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.NewGroup API documentation - + diff --git a/docs/three/MF/V3/Settings/Project.html b/docs/three/MF/V3/Settings/Project.html index 0fc479d..8aa5a81 100644 --- a/docs/three/MF/V3/Settings/Project.html +++ b/docs/three/MF/V3/Settings/Project.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Project API documentation - + diff --git a/docs/three/MF/V3/Settings/Projector.html b/docs/three/MF/V3/Settings/Projector.html index d50e87e..3742805 100644 --- a/docs/three/MF/V3/Settings/Projector.html +++ b/docs/three/MF/V3/Settings/Projector.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Projector API documentation - + diff --git a/docs/three/MF/V3/Settings/Quality.html b/docs/three/MF/V3/Settings/Quality.html index c38e61a..83aef06 100644 --- a/docs/three/MF/V3/Settings/Quality.html +++ b/docs/three/MF/V3/Settings/Quality.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Quality API documentation - + diff --git a/docs/three/MF/V3/Settings/Rectangle.html b/docs/three/MF/V3/Settings/Rectangle.html index 0b661a1..56f17e2 100644 --- a/docs/three/MF/V3/Settings/Rectangle.html +++ b/docs/three/MF/V3/Settings/Rectangle.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Rectangle API documentation - + diff --git a/docs/three/MF/V3/Settings/RemoveVertices.html b/docs/three/MF/V3/Settings/RemoveVertices.html index d94b993..669ba9e 100644 --- a/docs/three/MF/V3/Settings/RemoveVertices.html +++ b/docs/three/MF/V3/Settings/RemoveVertices.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.RemoveVertices API documentation - + diff --git a/docs/three/MF/V3/Settings/Scan.html b/docs/three/MF/V3/Settings/Scan.html index e23e1dd..75a0fb2 100644 --- a/docs/three/MF/V3/Settings/Scan.html +++ b/docs/three/MF/V3/Settings/Scan.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Scan API documentation - + diff --git a/docs/three/MF/V3/Settings/ScanData.html b/docs/three/MF/V3/Settings/ScanData.html index 6a908c7..a9af31a 100644 --- a/docs/three/MF/V3/Settings/ScanData.html +++ b/docs/three/MF/V3/Settings/ScanData.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.ScanData API documentation - + diff --git a/docs/three/MF/V3/Settings/ScanSelection.html b/docs/three/MF/V3/Settings/ScanSelection.html index 7def553..a81a0f0 100644 --- a/docs/three/MF/V3/Settings/ScanSelection.html +++ b/docs/three/MF/V3/Settings/ScanSelection.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.ScanSelection API documentation - + diff --git a/docs/three/MF/V3/Settings/Scanner.html b/docs/three/MF/V3/Settings/Scanner.html index d879983..a813402 100644 --- a/docs/three/MF/V3/Settings/Scanner.html +++ b/docs/three/MF/V3/Settings/Scanner.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Scanner API documentation - + diff --git a/docs/three/MF/V3/Settings/Smooth.html b/docs/three/MF/V3/Settings/Smooth.html index e9ef5d4..3b80057 100644 --- a/docs/three/MF/V3/Settings/Smooth.html +++ b/docs/three/MF/V3/Settings/Smooth.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Smooth API documentation - + diff --git a/docs/three/MF/V3/Settings/Software.html b/docs/three/MF/V3/Settings/Software.html index da3504d..8c01f00 100644 --- a/docs/three/MF/V3/Settings/Software.html +++ b/docs/three/MF/V3/Settings/Software.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Software API documentation - + diff --git a/docs/three/MF/V3/Settings/Style.html b/docs/three/MF/V3/Settings/Style.html index 982176c..8e0b202 100644 --- a/docs/three/MF/V3/Settings/Style.html +++ b/docs/three/MF/V3/Settings/Style.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Style API documentation - + diff --git a/docs/three/MF/V3/Settings/Turntable.html b/docs/three/MF/V3/Settings/Turntable.html index 722901a..b0c8f28 100644 --- a/docs/three/MF/V3/Settings/Turntable.html +++ b/docs/three/MF/V3/Settings/Turntable.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Turntable API documentation - + diff --git a/docs/three/MF/V3/Settings/Tutorials.html b/docs/three/MF/V3/Settings/Tutorials.html index 0f9cab2..410910e 100644 --- a/docs/three/MF/V3/Settings/Tutorials.html +++ b/docs/three/MF/V3/Settings/Tutorials.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Tutorials API documentation - + diff --git a/docs/three/MF/V3/Settings/Video.html b/docs/three/MF/V3/Settings/Video.html index 93c13d9..756b936 100644 --- a/docs/three/MF/V3/Settings/Video.html +++ b/docs/three/MF/V3/Settings/Video.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Video API documentation - + diff --git a/docs/three/MF/V3/Settings/Viewer.html b/docs/three/MF/V3/Settings/Viewer.html index 57778c8..fc53b4e 100644 --- a/docs/three/MF/V3/Settings/Viewer.html +++ b/docs/three/MF/V3/Settings/Viewer.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Viewer API documentation - + diff --git a/docs/three/MF/V3/Settings/Wifi.html b/docs/three/MF/V3/Settings/Wifi.html index ee01b9e..21636a7 100644 --- a/docs/three/MF/V3/Settings/Wifi.html +++ b/docs/three/MF/V3/Settings/Wifi.html @@ -3,14 +3,14 @@ - + three.MF.V3.Settings.Wifi API documentation - + diff --git a/docs/three/MF/V3/Task.html b/docs/three/MF/V3/Task.html index 9fe4854..ec130e0 100644 --- a/docs/three/MF/V3/Task.html +++ b/docs/three/MF/V3/Task.html @@ -3,14 +3,14 @@ - + three.MF.V3.Task API documentation - + @@ -462,7 +462,7 @@

- Task( Index: int, Type: str, Input: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None, Output: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None, State: TaskState = None, Error: str = None, Progress: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.13.7/x64/lib/python3.13/site-packages/google/protobuf/any_pb2.py'> = None) + Task( Index: int, Type: str, Input: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None, Output: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None, State: TaskState = None, Error: str = None, Progress: <module 'google.protobuf.any_pb2' from '/opt/hostedtoolcache/Python/3.14.6/x64/lib/python3.14/site-packages/google/protobuf/any_pb2.py'> = None) diff --git a/docs/three/MF/V3/Tasks.html b/docs/three/MF/V3/Tasks.html index 3bc4238..2ddfb07 100644 --- a/docs/three/MF/V3/Tasks.html +++ b/docs/three/MF/V3/Tasks.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks API documentation - +
@@ -126,60 +138,72 @@

9from MF.V3.Tasks.CaptureImage import * 10from MF.V3.Tasks.ClearSettings import * 11from MF.V3.Tasks.CloseProject import * -12from MF.V3.Tasks.ConnectWifi import * -13from MF.V3.Tasks.CopyGroups import * -14from MF.V3.Tasks.DepthMap import * -15from MF.V3.Tasks.DetectCalibrationCard import * -16from MF.V3.Tasks.DownloadProject import * -17from MF.V3.Tasks.Export import * -18from MF.V3.Tasks.ExportFactoryCalibrationLogs import * -19from MF.V3.Tasks.ExportHeatMap import * -20from MF.V3.Tasks.ExportLogs import * -21from MF.V3.Tasks.ExportMerge import * -22from MF.V3.Tasks.FactoryReset import * -23from MF.V3.Tasks.FlattenGroup import * -24from MF.V3.Tasks.ForgetWifi import * -25from MF.V3.Tasks.HasCameras import * -26from MF.V3.Tasks.HasProjector import * -27from MF.V3.Tasks.HasTurntable import * -28from MF.V3.Tasks.HeatMap import * -29from MF.V3.Tasks.Import import * -30from MF.V3.Tasks.ListExportFormats import * -31from MF.V3.Tasks.ListGroups import * -32from MF.V3.Tasks.ListNetworkInterfaces import * -33from MF.V3.Tasks.ListProjects import * -34from MF.V3.Tasks.ListScans import * -35from MF.V3.Tasks.ListSettings import * -36from MF.V3.Tasks.ListWifi import * -37from MF.V3.Tasks.Merge import * -38from MF.V3.Tasks.MergeData import * -39from MF.V3.Tasks.MoveGroup import * -40from MF.V3.Tasks.NewGroup import * -41from MF.V3.Tasks.NewProject import * -42from MF.V3.Tasks.NewScan import * -43from MF.V3.Tasks.OpenProject import * -44from MF.V3.Tasks.PopSettings import * -45from MF.V3.Tasks.PushSettings import * -46from MF.V3.Tasks.Reboot import * -47from MF.V3.Tasks.RemoveGroups import * -48from MF.V3.Tasks.RemoveProjects import * -49from MF.V3.Tasks.RestoreFactoryCalibration import * -50from MF.V3.Tasks.RotateTurntable import * -51from MF.V3.Tasks.ScanData import * -52from MF.V3.Tasks.SetCameras import * -53from MF.V3.Tasks.SetGroup import * -54from MF.V3.Tasks.SetProject import * -55from MF.V3.Tasks.SetProjector import * -56from MF.V3.Tasks.Shutdown import * -57from MF.V3.Tasks.Smooth import * -58from MF.V3.Tasks.SplitGroup import * -59from MF.V3.Tasks.StartVideo import * -60from MF.V3.Tasks.StopVideo import * -61from MF.V3.Tasks.SystemInfo import * -62from MF.V3.Tasks.TransformGroup import * -63from MF.V3.Tasks.TurntableCalibration import * -64from MF.V3.Tasks.UpdateSettings import * -65from MF.V3.Tasks.UploadProject import * +12from MF.V3.Tasks.ConnectScanner import * +13from MF.V3.Tasks.ConnectWifi import * +14from MF.V3.Tasks.CopyGroups import * +15from MF.V3.Tasks.DepthMap import * +16from MF.V3.Tasks.DetectCalibrationCard import * +17from MF.V3.Tasks.DisconnectScanner import * +18from MF.V3.Tasks.DiscoverScanners import * +19from MF.V3.Tasks.DownloadProject import * +20from MF.V3.Tasks.DownloadScannerProject import * +21from MF.V3.Tasks.Export import * +22from MF.V3.Tasks.ExportFactoryCalibrationLogs import * +23from MF.V3.Tasks.ExportHeatMap import * +24from MF.V3.Tasks.ExportLogs import * +25from MF.V3.Tasks.ExportMerge import * +26from MF.V3.Tasks.FactoryReset import * +27from MF.V3.Tasks.FlattenGroup import * +28from MF.V3.Tasks.ForgetWifi import * +29from MF.V3.Tasks.GetProtocolInfo import * +30from MF.V3.Tasks.GetScannerStatus import * +31from MF.V3.Tasks.HasCameras import * +32from MF.V3.Tasks.HasProjector import * +33from MF.V3.Tasks.HasTurntable import * +34from MF.V3.Tasks.HeatMap import * +35from MF.V3.Tasks.Import import * +36from MF.V3.Tasks.ListExportFormats import * +37from MF.V3.Tasks.ListGroups import * +38from MF.V3.Tasks.ListNetworkInterfaces import * +39from MF.V3.Tasks.ListProjects import * +40from MF.V3.Tasks.ListScannerProjects import * +41from MF.V3.Tasks.ListScans import * +42from MF.V3.Tasks.ListSettings import * +43from MF.V3.Tasks.ListWifi import * +44from MF.V3.Tasks.Merge import * +45from MF.V3.Tasks.MergeData import * +46from MF.V3.Tasks.MoveGroup import * +47from MF.V3.Tasks.NewGroup import * +48from MF.V3.Tasks.NewProject import * +49from MF.V3.Tasks.NewScan import * +50from MF.V3.Tasks.OpenProject import * +51from MF.V3.Tasks.PopSettings import * +52from MF.V3.Tasks.PullProject import * +53from MF.V3.Tasks.PushProject import * +54from MF.V3.Tasks.PushSettings import * +55from MF.V3.Tasks.Reboot import * +56from MF.V3.Tasks.RemoveGroups import * +57from MF.V3.Tasks.RemoveProjects import * +58from MF.V3.Tasks.RemoveScannerProjects import * +59from MF.V3.Tasks.RestoreFactoryCalibration import * +60from MF.V3.Tasks.RotateTurntable import * +61from MF.V3.Tasks.ScanData import * +62from MF.V3.Tasks.SetCameras import * +63from MF.V3.Tasks.SetGroup import * +64from MF.V3.Tasks.SetProcessingDevices import * +65from MF.V3.Tasks.SetProject import * +66from MF.V3.Tasks.SetProjector import * +67from MF.V3.Tasks.Shutdown import * +68from MF.V3.Tasks.Smooth import * +69from MF.V3.Tasks.SplitGroup import * +70from MF.V3.Tasks.StartVideo import * +71from MF.V3.Tasks.StopVideo import * +72from MF.V3.Tasks.StorageInfo import * +73from MF.V3.Tasks.SystemInfo import * +74from MF.V3.Tasks.TransformGroup import * +75from MF.V3.Tasks.TurntableCalibration import * +76from MF.V3.Tasks.UpdateSettings import * +77from MF.V3.Tasks.UploadProject import * diff --git a/docs/three/MF/V3/Tasks/AddMergeToProject.html b/docs/three/MF/V3/Tasks/AddMergeToProject.html index 4eeb112..a1eb237 100644 --- a/docs/three/MF/V3/Tasks/AddMergeToProject.html +++ b/docs/three/MF/V3/Tasks/AddMergeToProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.AddMergeToProject API documentation - + diff --git a/docs/three/MF/V3/Tasks/Align.html b/docs/three/MF/V3/Tasks/Align.html index b0c6fc8..01cc25c 100644 --- a/docs/three/MF/V3/Tasks/Align.html +++ b/docs/three/MF/V3/Tasks/Align.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Align API documentation - + diff --git a/docs/three/MF/V3/Tasks/AutoFocus.html b/docs/three/MF/V3/Tasks/AutoFocus.html index 88e5706..43326c1 100644 --- a/docs/three/MF/V3/Tasks/AutoFocus.html +++ b/docs/three/MF/V3/Tasks/AutoFocus.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.AutoFocus API documentation - + diff --git a/docs/three/MF/V3/Tasks/BoundingBox.html b/docs/three/MF/V3/Tasks/BoundingBox.html index 8f6604d..3457cd0 100644 --- a/docs/three/MF/V3/Tasks/BoundingBox.html +++ b/docs/three/MF/V3/Tasks/BoundingBox.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.BoundingBox API documentation - + diff --git a/docs/three/MF/V3/Tasks/CalibrateCameras.html b/docs/three/MF/V3/Tasks/CalibrateCameras.html index 011a133..57db8cd 100644 --- a/docs/three/MF/V3/Tasks/CalibrateCameras.html +++ b/docs/three/MF/V3/Tasks/CalibrateCameras.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CalibrateCameras API documentation - + diff --git a/docs/three/MF/V3/Tasks/CalibrateTurntable.html b/docs/three/MF/V3/Tasks/CalibrateTurntable.html index 878cbcd..962f5ad 100644 --- a/docs/three/MF/V3/Tasks/CalibrateTurntable.html +++ b/docs/three/MF/V3/Tasks/CalibrateTurntable.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CalibrateTurntable API documentation - + diff --git a/docs/three/MF/V3/Tasks/CalibrationCaptureTargets.html b/docs/three/MF/V3/Tasks/CalibrationCaptureTargets.html index 1ebf417..e685cf8 100644 --- a/docs/three/MF/V3/Tasks/CalibrationCaptureTargets.html +++ b/docs/three/MF/V3/Tasks/CalibrationCaptureTargets.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CalibrationCaptureTargets API documentation - + diff --git a/docs/three/MF/V3/Tasks/CameraCalibration.html b/docs/three/MF/V3/Tasks/CameraCalibration.html index 50a26e3..d91a488 100644 --- a/docs/three/MF/V3/Tasks/CameraCalibration.html +++ b/docs/three/MF/V3/Tasks/CameraCalibration.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CameraCalibration API documentation - + diff --git a/docs/three/MF/V3/Tasks/CaptureImage.html b/docs/three/MF/V3/Tasks/CaptureImage.html index efe6f92..e9602e9 100644 --- a/docs/three/MF/V3/Tasks/CaptureImage.html +++ b/docs/three/MF/V3/Tasks/CaptureImage.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CaptureImage API documentation - + diff --git a/docs/three/MF/V3/Tasks/ClearSettings.html b/docs/three/MF/V3/Tasks/ClearSettings.html index 04cbd9e..b148200 100644 --- a/docs/three/MF/V3/Tasks/ClearSettings.html +++ b/docs/three/MF/V3/Tasks/ClearSettings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ClearSettings API documentation - + diff --git a/docs/three/MF/V3/Tasks/CloseProject.html b/docs/three/MF/V3/Tasks/CloseProject.html index 96d08d7..119c569 100644 --- a/docs/three/MF/V3/Tasks/CloseProject.html +++ b/docs/three/MF/V3/Tasks/CloseProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CloseProject API documentation - + diff --git a/docs/three/MF/V3/Tasks/ConnectScanner.html b/docs/three/MF/V3/Tasks/ConnectScanner.html new file mode 100644 index 0000000..841848b --- /dev/null +++ b/docs/three/MF/V3/Tasks/ConnectScanner.html @@ -0,0 +1,657 @@ + + + + + + + three.MF.V3.Tasks.ConnectScanner API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.ConnectScanner

+ + + + + + +
 1from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 2
+ 3
+ 4class ConnectScanner:
+ 5    """*
+ 6    Connect the desktop engine to a scanner (desktop engine only).
+ 7
+ 8    The engine negotiates capabilities with `GetProtocolInfo`, enables client
+ 9    processing, and downloads the scanner's calibration into its local
+10    workspace.  A `ScannerStatus` message is pushed to every client when the
+11    connection state changes.
+12
+13    > Request example:
+14
+15    ```json
+16    {
+17    "Task":{ "Index":1, "Type":"ConnectScanner", "Input":"matterandform.local" }
+18    }
+19    ```
+20
+21    > Response example:
+22
+23    ```json
+24    {
+25    "Task":{ "Index":1, "Type":"ConnectScanner", "Output":true, "State":"Completed" }
+26    }
+27    ```
+28    """
+29    class Request:
+30
+31        """
+32         Client request for the `ConnectScanner` task.
+33        """
+34        def __init__(self, Index: int, Type: str, Input: str):
+35            # A unique identifier generated by the client.
+36            self.Index = Index
+37            # "ConnectScanner"
+38            self.Type = Type
+39            # The scanner host name or IPv4 address.
+40            self.Input = Input
+41
+42    class Response:
+43
+44        """
+45         Server response for the `ConnectScanner` task.
+46        """
+47        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+48            # The unique identifier generated by the client.
+49            self.Index = Index
+50            # "ConnectScanner"
+51            self.Type = Type
+52            # True if the connection was established.
+53            self.Output = Output
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+58
+59    def __init__(self):
+60        pass
+
+ + +
+
+ +
+ + class + ConnectScanner: + + + +
+ +
 5class ConnectScanner:
+ 6    """*
+ 7    Connect the desktop engine to a scanner (desktop engine only).
+ 8
+ 9    The engine negotiates capabilities with `GetProtocolInfo`, enables client
+10    processing, and downloads the scanner's calibration into its local
+11    workspace.  A `ScannerStatus` message is pushed to every client when the
+12    connection state changes.
+13
+14    > Request example:
+15
+16    ```json
+17    {
+18    "Task":{ "Index":1, "Type":"ConnectScanner", "Input":"matterandform.local" }
+19    }
+20    ```
+21
+22    > Response example:
+23
+24    ```json
+25    {
+26    "Task":{ "Index":1, "Type":"ConnectScanner", "Output":true, "State":"Completed" }
+27    }
+28    ```
+29    """
+30    class Request:
+31
+32        """
+33         Client request for the `ConnectScanner` task.
+34        """
+35        def __init__(self, Index: int, Type: str, Input: str):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "ConnectScanner"
+39            self.Type = Type
+40            # The scanner host name or IPv4 address.
+41            self.Input = Input
+42
+43    class Response:
+44
+45        """
+46         Server response for the `ConnectScanner` task.
+47        """
+48        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "ConnectScanner"
+52            self.Type = Type
+53            # True if the connection was established.
+54            self.Output = Output
+55            # The current state of the task.
+56            self.State = State
+57            # A string describing the error if the task has failed.
+58            self.Error = Error
+59
+60    def __init__(self):
+61        pass
+
+ + +

* +Connect the desktop engine to a scanner (desktop engine only).

+ +

The engine negotiates capabilities with GetProtocolInfo, enables client +processing, and downloads the scanner's calibration into its local +workspace. A ScannerStatus message is pushed to every client when the +connection state changes.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"ConnectScanner", "Input":"matterandform.local" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"ConnectScanner", "Output":true, "State":"Completed" }
+}
+
+
+
+ + +
+
+ +
+ + class + ConnectScanner.Request: + + + +
+ +
30    class Request:
+31
+32        """
+33         Client request for the `ConnectScanner` task.
+34        """
+35        def __init__(self, Index: int, Type: str, Input: str):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "ConnectScanner"
+39            self.Type = Type
+40            # The scanner host name or IPv4 address.
+41            self.Input = Input
+
+ + +

Client request for the ConnectScanner task.

+
+ + +
+ +
+ + ConnectScanner.Request(Index: int, Type: str, Input: str) + + + +
+ +
35        def __init__(self, Index: int, Type: str, Input: str):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "ConnectScanner"
+39            self.Type = Type
+40            # The scanner host name or IPv4 address.
+41            self.Input = Input
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Input + + +
+ + + + +
+
+
+ +
+ + class + ConnectScanner.Response: + + + +
+ +
43    class Response:
+44
+45        """
+46         Server response for the `ConnectScanner` task.
+47        """
+48        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "ConnectScanner"
+52            self.Type = Type
+53            # True if the connection was established.
+54            self.Output = Output
+55            # The current state of the task.
+56            self.State = State
+57            # A string describing the error if the task has failed.
+58            self.Error = Error
+
+ + +

Server response for the ConnectScanner task.

+
+ + +
+ +
+ + ConnectScanner.Response( Index: int, Type: str, Output: bool = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
48        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "ConnectScanner"
+52            self.Type = Type
+53            # True if the connection was established.
+54            self.Output = Output
+55            # The current state of the task.
+56            self.State = State
+57            # A string describing the error if the task has failed.
+58            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/ConnectWifi.html b/docs/three/MF/V3/Tasks/ConnectWifi.html index dc8a816..ab5024c 100644 --- a/docs/three/MF/V3/Tasks/ConnectWifi.html +++ b/docs/three/MF/V3/Tasks/ConnectWifi.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ConnectWifi API documentation - + diff --git a/docs/three/MF/V3/Tasks/CopyGroups.html b/docs/three/MF/V3/Tasks/CopyGroups.html index 6af26de..0b47c4e 100644 --- a/docs/three/MF/V3/Tasks/CopyGroups.html +++ b/docs/three/MF/V3/Tasks/CopyGroups.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.CopyGroups API documentation - + diff --git a/docs/three/MF/V3/Tasks/DepthMap.html b/docs/three/MF/V3/Tasks/DepthMap.html index 6e90949..86b1e63 100644 --- a/docs/three/MF/V3/Tasks/DepthMap.html +++ b/docs/three/MF/V3/Tasks/DepthMap.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.DepthMap API documentation - + diff --git a/docs/three/MF/V3/Tasks/DetectCalibrationCard.html b/docs/three/MF/V3/Tasks/DetectCalibrationCard.html index ca0d395..5d880dc 100644 --- a/docs/three/MF/V3/Tasks/DetectCalibrationCard.html +++ b/docs/three/MF/V3/Tasks/DetectCalibrationCard.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.DetectCalibrationCard API documentation - + diff --git a/docs/three/MF/V3/Tasks/DisconnectScanner.html b/docs/three/MF/V3/Tasks/DisconnectScanner.html new file mode 100644 index 0000000..0d79d26 --- /dev/null +++ b/docs/three/MF/V3/Tasks/DisconnectScanner.html @@ -0,0 +1,620 @@ + + + + + + + three.MF.V3.Tasks.DisconnectScanner API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.DisconnectScanner

+ + + + + + +
 1from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 2
+ 3
+ 4class DisconnectScanner:
+ 5    """*
+ 6    Disconnect the desktop engine from its scanner (desktop engine only).
+ 7
+ 8    > Request example:
+ 9
+10    ```json
+11    {
+12    "Task":{ "Index":1, "Type":"DisconnectScanner" }
+13    }
+14    ```
+15
+16    > Response example:
+17
+18    ```json
+19    {
+20    "Task":{ "Index":1, "Type":"DisconnectScanner", "Output":true, "State":"Completed" }
+21    }
+22    ```
+23    """
+24    class Request:
+25
+26        """
+27         Client request for the `DisconnectScanner` task.
+28        """
+29        def __init__(self, Index: int, Type: str):
+30            # A unique identifier generated by the client.
+31            self.Index = Index
+32            # "DisconnectScanner"
+33            self.Type = Type
+34
+35    class Response:
+36
+37        """
+38         Server response for the `DisconnectScanner` task.
+39        """
+40        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+41            # The unique identifier generated by the client.
+42            self.Index = Index
+43            # "DisconnectScanner"
+44            self.Type = Type
+45            # Always true.
+46            self.Output = Output
+47            # The current state of the task.
+48            self.State = State
+49            # A string describing the error if the task has failed.
+50            self.Error = Error
+51
+52    def __init__(self):
+53        pass
+
+ + +
+
+ +
+ + class + DisconnectScanner: + + + +
+ +
 5class DisconnectScanner:
+ 6    """*
+ 7    Disconnect the desktop engine from its scanner (desktop engine only).
+ 8
+ 9    > Request example:
+10
+11    ```json
+12    {
+13    "Task":{ "Index":1, "Type":"DisconnectScanner" }
+14    }
+15    ```
+16
+17    > Response example:
+18
+19    ```json
+20    {
+21    "Task":{ "Index":1, "Type":"DisconnectScanner", "Output":true, "State":"Completed" }
+22    }
+23    ```
+24    """
+25    class Request:
+26
+27        """
+28         Client request for the `DisconnectScanner` task.
+29        """
+30        def __init__(self, Index: int, Type: str):
+31            # A unique identifier generated by the client.
+32            self.Index = Index
+33            # "DisconnectScanner"
+34            self.Type = Type
+35
+36    class Response:
+37
+38        """
+39         Server response for the `DisconnectScanner` task.
+40        """
+41        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+42            # The unique identifier generated by the client.
+43            self.Index = Index
+44            # "DisconnectScanner"
+45            self.Type = Type
+46            # Always true.
+47            self.Output = Output
+48            # The current state of the task.
+49            self.State = State
+50            # A string describing the error if the task has failed.
+51            self.Error = Error
+52
+53    def __init__(self):
+54        pass
+
+ + +

* +Disconnect the desktop engine from its scanner (desktop engine only).

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"DisconnectScanner" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"DisconnectScanner", "Output":true, "State":"Completed" }
+}
+
+
+
+ + +
+
+ +
+ + class + DisconnectScanner.Request: + + + +
+ +
25    class Request:
+26
+27        """
+28         Client request for the `DisconnectScanner` task.
+29        """
+30        def __init__(self, Index: int, Type: str):
+31            # A unique identifier generated by the client.
+32            self.Index = Index
+33            # "DisconnectScanner"
+34            self.Type = Type
+
+ + +

Client request for the DisconnectScanner task.

+
+ + +
+ +
+ + DisconnectScanner.Request(Index: int, Type: str) + + + +
+ +
30        def __init__(self, Index: int, Type: str):
+31            # A unique identifier generated by the client.
+32            self.Index = Index
+33            # "DisconnectScanner"
+34            self.Type = Type
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ +
+ + class + DisconnectScanner.Response: + + + +
+ +
36    class Response:
+37
+38        """
+39         Server response for the `DisconnectScanner` task.
+40        """
+41        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+42            # The unique identifier generated by the client.
+43            self.Index = Index
+44            # "DisconnectScanner"
+45            self.Type = Type
+46            # Always true.
+47            self.Output = Output
+48            # The current state of the task.
+49            self.State = State
+50            # A string describing the error if the task has failed.
+51            self.Error = Error
+
+ + +

Server response for the DisconnectScanner task.

+
+ + +
+ +
+ + DisconnectScanner.Response( Index: int, Type: str, Output: bool = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
41        def __init__(self, Index: int, Type: str, Output: bool = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+42            # The unique identifier generated by the client.
+43            self.Index = Index
+44            # "DisconnectScanner"
+45            self.Type = Type
+46            # Always true.
+47            self.Output = Output
+48            # The current state of the task.
+49            self.State = State
+50            # A string describing the error if the task has failed.
+51            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/DiscoverScanners.html b/docs/three/MF/V3/Tasks/DiscoverScanners.html new file mode 100644 index 0000000..5d0f272 --- /dev/null +++ b/docs/three/MF/V3/Tasks/DiscoverScanners.html @@ -0,0 +1,651 @@ + + + + + + + three.MF.V3.Tasks.DiscoverScanners API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.DiscoverScanners

+ + + + + + +
 1from MF.V3.Descriptors.ScannerList import ScannerList
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3
+ 4
+ 5class DiscoverScanners:
+ 6    """*
+ 7    Discover scanners on the local network (desktop engine only).
+ 8
+ 9    The engine browses mDNS for advertised scanners and additionally resolves
+10    the default scanner host name, so scanners running older firmware that does
+11    not advertise a service record are still found.  The search runs for a few
+12    seconds before the result is returned; run the task again to refresh.
+13
+14    > Request example:
+15
+16    ```json
+17    {
+18    "Task":{ "Index":1, "Type":"DiscoverScanners" }
+19    }
+20    ```
+21
+22    > Response example:
+23
+24    ```json
+25    {
+26    "Task":{
+27    "Index":1,
+28    "Type":"DiscoverScanners",
+29    "Output":{ "scanners":[{ "name":"THREE", "host":"matterandform.local", "ip":"192.168.50.115", "port":8081 }] },
+30    "State":"Completed"
+31    }
+32    }
+33    ```
+34    """
+35    class Request:
+36
+37        """
+38         Client request for the `DiscoverScanners` task.
+39        """
+40        def __init__(self, Index: int, Type: str):
+41            # A unique identifier generated by the client.
+42            self.Index = Index
+43            # "DiscoverScanners"
+44            self.Type = Type
+45
+46    class Response:
+47
+48        """
+49         Server response for the `DiscoverScanners` task.
+50        """
+51        def __init__(self, Index: int, Type: str, Output: ScannerList = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+52            # The unique identifier generated by the client.
+53            self.Index = Index
+54            # "DiscoverScanners"
+55            self.Type = Type
+56            # The discovered scanners.
+57            self.Output = Output
+58            # The current state of the task.
+59            self.State = State
+60            # A string describing the error if the task has failed.
+61            self.Error = Error
+62
+63    def __init__(self):
+64        pass
+
+ + +
+
+ +
+ + class + DiscoverScanners: + + + +
+ +
 6class DiscoverScanners:
+ 7    """*
+ 8    Discover scanners on the local network (desktop engine only).
+ 9
+10    The engine browses mDNS for advertised scanners and additionally resolves
+11    the default scanner host name, so scanners running older firmware that does
+12    not advertise a service record are still found.  The search runs for a few
+13    seconds before the result is returned; run the task again to refresh.
+14
+15    > Request example:
+16
+17    ```json
+18    {
+19    "Task":{ "Index":1, "Type":"DiscoverScanners" }
+20    }
+21    ```
+22
+23    > Response example:
+24
+25    ```json
+26    {
+27    "Task":{
+28    "Index":1,
+29    "Type":"DiscoverScanners",
+30    "Output":{ "scanners":[{ "name":"THREE", "host":"matterandform.local", "ip":"192.168.50.115", "port":8081 }] },
+31    "State":"Completed"
+32    }
+33    }
+34    ```
+35    """
+36    class Request:
+37
+38        """
+39         Client request for the `DiscoverScanners` task.
+40        """
+41        def __init__(self, Index: int, Type: str):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "DiscoverScanners"
+45            self.Type = Type
+46
+47    class Response:
+48
+49        """
+50         Server response for the `DiscoverScanners` task.
+51        """
+52        def __init__(self, Index: int, Type: str, Output: ScannerList = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "DiscoverScanners"
+56            self.Type = Type
+57            # The discovered scanners.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+63
+64    def __init__(self):
+65        pass
+
+ + +

* +Discover scanners on the local network (desktop engine only).

+ +

The engine browses mDNS for advertised scanners and additionally resolves +the default scanner host name, so scanners running older firmware that does +not advertise a service record are still found. The search runs for a few +seconds before the result is returned; run the task again to refresh.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"DiscoverScanners" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"DiscoverScanners",
+"Output":{ "scanners":[{ "name":"THREE", "host":"matterandform.local", "ip":"192.168.50.115", "port":8081 }] },
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + DiscoverScanners.Request: + + + +
+ +
36    class Request:
+37
+38        """
+39         Client request for the `DiscoverScanners` task.
+40        """
+41        def __init__(self, Index: int, Type: str):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "DiscoverScanners"
+45            self.Type = Type
+
+ + +

Client request for the DiscoverScanners task.

+
+ + +
+ +
+ + DiscoverScanners.Request(Index: int, Type: str) + + + +
+ +
41        def __init__(self, Index: int, Type: str):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "DiscoverScanners"
+45            self.Type = Type
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ +
+ + class + DiscoverScanners.Response: + + + +
+ +
47    class Response:
+48
+49        """
+50         Server response for the `DiscoverScanners` task.
+51        """
+52        def __init__(self, Index: int, Type: str, Output: ScannerList = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "DiscoverScanners"
+56            self.Type = Type
+57            # The discovered scanners.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+
+ + +

Server response for the DiscoverScanners task.

+
+ + +
+ +
+ + DiscoverScanners.Response( Index: int, Type: str, Output: MF.V3.Descriptors.ScannerList.ScannerList = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
52        def __init__(self, Index: int, Type: str, Output: ScannerList = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "DiscoverScanners"
+56            self.Type = Type
+57            # The discovered scanners.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/DownloadProject.html b/docs/three/MF/V3/Tasks/DownloadProject.html index 80ca497..6b0d521 100644 --- a/docs/three/MF/V3/Tasks/DownloadProject.html +++ b/docs/three/MF/V3/Tasks/DownloadProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.DownloadProject API documentation - + diff --git a/docs/three/MF/V3/Tasks/DownloadScannerProject.html b/docs/three/MF/V3/Tasks/DownloadScannerProject.html new file mode 100644 index 0000000..2be5e7b --- /dev/null +++ b/docs/three/MF/V3/Tasks/DownloadScannerProject.html @@ -0,0 +1,635 @@ + + + + + + + three.MF.V3.Tasks.DownloadScannerProject API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.DownloadScannerProject

+ + + + + + +
 1from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 2
+ 3
+ 4class DownloadScannerProject:
+ 5    """*
+ 6    Download a project archive from the connected scanner (desktop engine
+ 7    only).
+ 8
+ 9    The archive is sent to the client as a task buffer whose descriptor is the
+10    suggested file name.  The counterpart of `DownloadProject`, which archives a
+11    local project.
+12
+13    > Request example:
+14
+15    ```json
+16    {
+17    "Task":{ "Index":1, "Type":"DownloadScannerProject", "Input":2 }
+18    }
+19    ```
+20
+21    > Response example:
+22
+23    ```json
+24    {
+25    "Task":{ "Index":1, "Type":"DownloadScannerProject", "State":"Completed" }
+26    }
+27    ```
+28    """
+29    class Request:
+30
+31        """
+32         Client request for the `DownloadScannerProject` task.
+33        """
+34        def __init__(self, Index: int, Type: str, Input: int):
+35            # A unique identifier generated by the client.
+36            self.Index = Index
+37            # "DownloadScannerProject"
+38            self.Type = Type
+39            # The scanner project index to download.
+40            self.Input = Input
+41
+42    class Response:
+43
+44        """
+45         Server response for the `DownloadScannerProject` task.
+46        """
+47        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+48            # The unique identifier generated by the client.
+49            self.Index = Index
+50            # "DownloadScannerProject"
+51            self.Type = Type
+52            # The current state of the task.
+53            self.State = State
+54            # A string describing the error if the task has failed.
+55            self.Error = Error
+56
+57    def __init__(self):
+58        pass
+
+ + +
+
+ +
+ + class + DownloadScannerProject: + + + +
+ +
 5class DownloadScannerProject:
+ 6    """*
+ 7    Download a project archive from the connected scanner (desktop engine
+ 8    only).
+ 9
+10    The archive is sent to the client as a task buffer whose descriptor is the
+11    suggested file name.  The counterpart of `DownloadProject`, which archives a
+12    local project.
+13
+14    > Request example:
+15
+16    ```json
+17    {
+18    "Task":{ "Index":1, "Type":"DownloadScannerProject", "Input":2 }
+19    }
+20    ```
+21
+22    > Response example:
+23
+24    ```json
+25    {
+26    "Task":{ "Index":1, "Type":"DownloadScannerProject", "State":"Completed" }
+27    }
+28    ```
+29    """
+30    class Request:
+31
+32        """
+33         Client request for the `DownloadScannerProject` task.
+34        """
+35        def __init__(self, Index: int, Type: str, Input: int):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "DownloadScannerProject"
+39            self.Type = Type
+40            # The scanner project index to download.
+41            self.Input = Input
+42
+43    class Response:
+44
+45        """
+46         Server response for the `DownloadScannerProject` task.
+47        """
+48        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "DownloadScannerProject"
+52            self.Type = Type
+53            # The current state of the task.
+54            self.State = State
+55            # A string describing the error if the task has failed.
+56            self.Error = Error
+57
+58    def __init__(self):
+59        pass
+
+ + +

* +Download a project archive from the connected scanner (desktop engine +only).

+ +

The archive is sent to the client as a task buffer whose descriptor is the +suggested file name. The counterpart of DownloadProject, which archives a +local project.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"DownloadScannerProject", "Input":2 }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"DownloadScannerProject", "State":"Completed" }
+}
+
+
+
+ + +
+
+ +
+ + class + DownloadScannerProject.Request: + + + +
+ +
30    class Request:
+31
+32        """
+33         Client request for the `DownloadScannerProject` task.
+34        """
+35        def __init__(self, Index: int, Type: str, Input: int):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "DownloadScannerProject"
+39            self.Type = Type
+40            # The scanner project index to download.
+41            self.Input = Input
+
+ + +

Client request for the DownloadScannerProject task.

+
+ + +
+ +
+ + DownloadScannerProject.Request(Index: int, Type: str, Input: int) + + + +
+ +
35        def __init__(self, Index: int, Type: str, Input: int):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "DownloadScannerProject"
+39            self.Type = Type
+40            # The scanner project index to download.
+41            self.Input = Input
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Input + + +
+ + + + +
+
+
+ +
+ + class + DownloadScannerProject.Response: + + + +
+ +
43    class Response:
+44
+45        """
+46         Server response for the `DownloadScannerProject` task.
+47        """
+48        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "DownloadScannerProject"
+52            self.Type = Type
+53            # The current state of the task.
+54            self.State = State
+55            # A string describing the error if the task has failed.
+56            self.Error = Error
+
+ + +

Server response for the DownloadScannerProject task.

+
+ + +
+ +
+ + DownloadScannerProject.Response( Index: int, Type: str, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
48        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "DownloadScannerProject"
+52            self.Type = Type
+53            # The current state of the task.
+54            self.State = State
+55            # A string describing the error if the task has failed.
+56            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/Export.html b/docs/three/MF/V3/Tasks/Export.html index dbb046a..353ec94 100644 --- a/docs/three/MF/V3/Tasks/Export.html +++ b/docs/three/MF/V3/Tasks/Export.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Export API documentation - + diff --git a/docs/three/MF/V3/Tasks/ExportFactoryCalibrationLogs.html b/docs/three/MF/V3/Tasks/ExportFactoryCalibrationLogs.html index b5bb8e3..25f610c 100644 --- a/docs/three/MF/V3/Tasks/ExportFactoryCalibrationLogs.html +++ b/docs/three/MF/V3/Tasks/ExportFactoryCalibrationLogs.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ExportFactoryCalibrationLogs API documentation - + diff --git a/docs/three/MF/V3/Tasks/ExportHeatMap.html b/docs/three/MF/V3/Tasks/ExportHeatMap.html index 69c76a1..a1903f0 100644 --- a/docs/three/MF/V3/Tasks/ExportHeatMap.html +++ b/docs/three/MF/V3/Tasks/ExportHeatMap.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ExportHeatMap API documentation - + diff --git a/docs/three/MF/V3/Tasks/ExportLogs.html b/docs/three/MF/V3/Tasks/ExportLogs.html index bb357df..c111e11 100644 --- a/docs/three/MF/V3/Tasks/ExportLogs.html +++ b/docs/three/MF/V3/Tasks/ExportLogs.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ExportLogs API documentation - + diff --git a/docs/three/MF/V3/Tasks/ExportMerge.html b/docs/three/MF/V3/Tasks/ExportMerge.html index fed6995..d3e4d3b 100644 --- a/docs/three/MF/V3/Tasks/ExportMerge.html +++ b/docs/three/MF/V3/Tasks/ExportMerge.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ExportMerge API documentation - + diff --git a/docs/three/MF/V3/Tasks/FactoryReset.html b/docs/three/MF/V3/Tasks/FactoryReset.html index db5a9a9..0360a89 100644 --- a/docs/three/MF/V3/Tasks/FactoryReset.html +++ b/docs/three/MF/V3/Tasks/FactoryReset.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.FactoryReset API documentation - + diff --git a/docs/three/MF/V3/Tasks/FlattenGroup.html b/docs/three/MF/V3/Tasks/FlattenGroup.html index 8759ca1..e765f25 100644 --- a/docs/three/MF/V3/Tasks/FlattenGroup.html +++ b/docs/three/MF/V3/Tasks/FlattenGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.FlattenGroup API documentation - + diff --git a/docs/three/MF/V3/Tasks/ForgetWifi.html b/docs/three/MF/V3/Tasks/ForgetWifi.html index faf513e..02ba03e 100644 --- a/docs/three/MF/V3/Tasks/ForgetWifi.html +++ b/docs/three/MF/V3/Tasks/ForgetWifi.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ForgetWifi API documentation - + diff --git a/docs/three/MF/V3/Tasks/GetProtocolInfo.html b/docs/three/MF/V3/Tasks/GetProtocolInfo.html new file mode 100644 index 0000000..da0f251 --- /dev/null +++ b/docs/three/MF/V3/Tasks/GetProtocolInfo.html @@ -0,0 +1,645 @@ + + + + + + + three.MF.V3.Tasks.GetProtocolInfo API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.GetProtocolInfo

+ + + + + + +
 1from MF.V3.Descriptors.ProtocolInfo import ProtocolInfo
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3
+ 4
+ 5class GetProtocolInfo:
+ 6    """*
+ 7    Get the desktop-processing protocol version and capabilities.
+ 8
+ 9    Older firmware does not implement this task; clients treat a failure as a
+10    server without desktop-processing capabilities.
+11
+12    > Request example:
+13
+14    ```json
+15    {
+16    "Task":{ "Index":1, "Type":"GetProtocolInfo" }
+17    }
+18    ```
+19
+20    > Response example:
+21
+22    ```json
+23    {
+24    "Task":{
+25    "Index":1,
+26    "Type":"GetProtocolInfo",
+27    "Output":{ "version":1, "capabilities":["scanCaptureStreaming"] },
+28    "State":"Completed"
+29    }
+30    }
+31    ```
+32    """
+33    class Request:
+34
+35        """
+36         Client request for the `GetProtocolInfo` task.
+37        """
+38        def __init__(self, Index: int, Type: str):
+39            # A unique identifier generated by the client.
+40            self.Index = Index
+41            # "GetProtocolInfo"
+42            self.Type = Type
+43
+44    class Response:
+45
+46        """
+47         Server response for the `GetProtocolInfo` task.
+48        """
+49        def __init__(self, Index: int, Type: str, Output: ProtocolInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+50            # The unique identifier generated by the client.
+51            self.Index = Index
+52            # "GetProtocolInfo"
+53            self.Type = Type
+54            # The protocol capability descriptor.
+55            self.Output = Output
+56            # The current state of the task.
+57            self.State = State
+58            # A string describing the error if the task has failed.
+59            self.Error = Error
+60
+61    def __init__(self):
+62        pass
+
+ + +
+
+ +
+ + class + GetProtocolInfo: + + + +
+ +
 6class GetProtocolInfo:
+ 7    """*
+ 8    Get the desktop-processing protocol version and capabilities.
+ 9
+10    Older firmware does not implement this task; clients treat a failure as a
+11    server without desktop-processing capabilities.
+12
+13    > Request example:
+14
+15    ```json
+16    {
+17    "Task":{ "Index":1, "Type":"GetProtocolInfo" }
+18    }
+19    ```
+20
+21    > Response example:
+22
+23    ```json
+24    {
+25    "Task":{
+26    "Index":1,
+27    "Type":"GetProtocolInfo",
+28    "Output":{ "version":1, "capabilities":["scanCaptureStreaming"] },
+29    "State":"Completed"
+30    }
+31    }
+32    ```
+33    """
+34    class Request:
+35
+36        """
+37         Client request for the `GetProtocolInfo` task.
+38        """
+39        def __init__(self, Index: int, Type: str):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "GetProtocolInfo"
+43            self.Type = Type
+44
+45    class Response:
+46
+47        """
+48         Server response for the `GetProtocolInfo` task.
+49        """
+50        def __init__(self, Index: int, Type: str, Output: ProtocolInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+51            # The unique identifier generated by the client.
+52            self.Index = Index
+53            # "GetProtocolInfo"
+54            self.Type = Type
+55            # The protocol capability descriptor.
+56            self.Output = Output
+57            # The current state of the task.
+58            self.State = State
+59            # A string describing the error if the task has failed.
+60            self.Error = Error
+61
+62    def __init__(self):
+63        pass
+
+ + +

* +Get the desktop-processing protocol version and capabilities.

+ +

Older firmware does not implement this task; clients treat a failure as a +server without desktop-processing capabilities.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"GetProtocolInfo" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"GetProtocolInfo",
+"Output":{ "version":1, "capabilities":["scanCaptureStreaming"] },
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + GetProtocolInfo.Request: + + + +
+ +
34    class Request:
+35
+36        """
+37         Client request for the `GetProtocolInfo` task.
+38        """
+39        def __init__(self, Index: int, Type: str):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "GetProtocolInfo"
+43            self.Type = Type
+
+ + +

Client request for the GetProtocolInfo task.

+
+ + +
+ +
+ + GetProtocolInfo.Request(Index: int, Type: str) + + + +
+ +
39        def __init__(self, Index: int, Type: str):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "GetProtocolInfo"
+43            self.Type = Type
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ +
+ + class + GetProtocolInfo.Response: + + + +
+ +
45    class Response:
+46
+47        """
+48         Server response for the `GetProtocolInfo` task.
+49        """
+50        def __init__(self, Index: int, Type: str, Output: ProtocolInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+51            # The unique identifier generated by the client.
+52            self.Index = Index
+53            # "GetProtocolInfo"
+54            self.Type = Type
+55            # The protocol capability descriptor.
+56            self.Output = Output
+57            # The current state of the task.
+58            self.State = State
+59            # A string describing the error if the task has failed.
+60            self.Error = Error
+
+ + +

Server response for the GetProtocolInfo task.

+
+ + +
+ +
+ + GetProtocolInfo.Response( Index: int, Type: str, Output: MF.V3.Descriptors.ProtocolInfo.ProtocolInfo = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
50        def __init__(self, Index: int, Type: str, Output: ProtocolInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+51            # The unique identifier generated by the client.
+52            self.Index = Index
+53            # "GetProtocolInfo"
+54            self.Type = Type
+55            # The protocol capability descriptor.
+56            self.Output = Output
+57            # The current state of the task.
+58            self.State = State
+59            # A string describing the error if the task has failed.
+60            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/GetScannerStatus.html b/docs/three/MF/V3/Tasks/GetScannerStatus.html new file mode 100644 index 0000000..f84fa52 --- /dev/null +++ b/docs/three/MF/V3/Tasks/GetScannerStatus.html @@ -0,0 +1,636 @@ + + + + + + + three.MF.V3.Tasks.GetScannerStatus API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.GetScannerStatus

+ + + + + + +
 1from MF.V3.Descriptors.ScannerStatus import ScannerStatus
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3
+ 4
+ 5class GetScannerStatus:
+ 6    """*
+ 7    Get the desktop engine's scanner connection status (desktop engine only).
+ 8
+ 9    > Request example:
+10
+11    ```json
+12    {
+13    "Task":{ "Index":1, "Type":"GetScannerStatus" }
+14    }
+15    ```
+16
+17    > Response example:
+18
+19    ```json
+20    {
+21    "Task":{
+22    "Index":1,
+23    "Type":"GetScannerStatus",
+24    "Output":{ "connected":true, "host":"192.168.50.115" },
+25    "State":"Completed"
+26    }
+27    }
+28    ```
+29    """
+30    class Request:
+31
+32        """
+33         Client request for the `GetScannerStatus` task.
+34        """
+35        def __init__(self, Index: int, Type: str):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "GetScannerStatus"
+39            self.Type = Type
+40
+41    class Response:
+42
+43        """
+44         Server response for the `GetScannerStatus` task.
+45        """
+46        def __init__(self, Index: int, Type: str, Output: ScannerStatus = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+47            # The unique identifier generated by the client.
+48            self.Index = Index
+49            # "GetScannerStatus"
+50            self.Type = Type
+51            # The scanner connection status.
+52            self.Output = Output
+53            # The current state of the task.
+54            self.State = State
+55            # A string describing the error if the task has failed.
+56            self.Error = Error
+57
+58    def __init__(self):
+59        pass
+
+ + +
+
+ +
+ + class + GetScannerStatus: + + + +
+ +
 6class GetScannerStatus:
+ 7    """*
+ 8    Get the desktop engine's scanner connection status (desktop engine only).
+ 9
+10    > Request example:
+11
+12    ```json
+13    {
+14    "Task":{ "Index":1, "Type":"GetScannerStatus" }
+15    }
+16    ```
+17
+18    > Response example:
+19
+20    ```json
+21    {
+22    "Task":{
+23    "Index":1,
+24    "Type":"GetScannerStatus",
+25    "Output":{ "connected":true, "host":"192.168.50.115" },
+26    "State":"Completed"
+27    }
+28    }
+29    ```
+30    """
+31    class Request:
+32
+33        """
+34         Client request for the `GetScannerStatus` task.
+35        """
+36        def __init__(self, Index: int, Type: str):
+37            # A unique identifier generated by the client.
+38            self.Index = Index
+39            # "GetScannerStatus"
+40            self.Type = Type
+41
+42    class Response:
+43
+44        """
+45         Server response for the `GetScannerStatus` task.
+46        """
+47        def __init__(self, Index: int, Type: str, Output: ScannerStatus = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+48            # The unique identifier generated by the client.
+49            self.Index = Index
+50            # "GetScannerStatus"
+51            self.Type = Type
+52            # The scanner connection status.
+53            self.Output = Output
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+58
+59    def __init__(self):
+60        pass
+
+ + +

* +Get the desktop engine's scanner connection status (desktop engine only).

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"GetScannerStatus" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"GetScannerStatus",
+"Output":{ "connected":true, "host":"192.168.50.115" },
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + GetScannerStatus.Request: + + + +
+ +
31    class Request:
+32
+33        """
+34         Client request for the `GetScannerStatus` task.
+35        """
+36        def __init__(self, Index: int, Type: str):
+37            # A unique identifier generated by the client.
+38            self.Index = Index
+39            # "GetScannerStatus"
+40            self.Type = Type
+
+ + +

Client request for the GetScannerStatus task.

+
+ + +
+ +
+ + GetScannerStatus.Request(Index: int, Type: str) + + + +
+ +
36        def __init__(self, Index: int, Type: str):
+37            # A unique identifier generated by the client.
+38            self.Index = Index
+39            # "GetScannerStatus"
+40            self.Type = Type
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ +
+ + class + GetScannerStatus.Response: + + + +
+ +
42    class Response:
+43
+44        """
+45         Server response for the `GetScannerStatus` task.
+46        """
+47        def __init__(self, Index: int, Type: str, Output: ScannerStatus = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+48            # The unique identifier generated by the client.
+49            self.Index = Index
+50            # "GetScannerStatus"
+51            self.Type = Type
+52            # The scanner connection status.
+53            self.Output = Output
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+
+ + +

Server response for the GetScannerStatus task.

+
+ + +
+ +
+ + GetScannerStatus.Response( Index: int, Type: str, Output: MF.V3.Descriptors.ScannerStatus.ScannerStatus = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
47        def __init__(self, Index: int, Type: str, Output: ScannerStatus = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+48            # The unique identifier generated by the client.
+49            self.Index = Index
+50            # "GetScannerStatus"
+51            self.Type = Type
+52            # The scanner connection status.
+53            self.Output = Output
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/HasCameras.html b/docs/three/MF/V3/Tasks/HasCameras.html index 23f4d2b..133837b 100644 --- a/docs/three/MF/V3/Tasks/HasCameras.html +++ b/docs/three/MF/V3/Tasks/HasCameras.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.HasCameras API documentation - + diff --git a/docs/three/MF/V3/Tasks/HasProjector.html b/docs/three/MF/V3/Tasks/HasProjector.html index 7610f65..f886393 100644 --- a/docs/three/MF/V3/Tasks/HasProjector.html +++ b/docs/three/MF/V3/Tasks/HasProjector.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.HasProjector API documentation - + diff --git a/docs/three/MF/V3/Tasks/HasTurntable.html b/docs/three/MF/V3/Tasks/HasTurntable.html index 6107a6c..71fcfa1 100644 --- a/docs/three/MF/V3/Tasks/HasTurntable.html +++ b/docs/three/MF/V3/Tasks/HasTurntable.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.HasTurntable API documentation - + diff --git a/docs/three/MF/V3/Tasks/HeatMap.html b/docs/three/MF/V3/Tasks/HeatMap.html index 9cdc2df..de4b32d 100644 --- a/docs/three/MF/V3/Tasks/HeatMap.html +++ b/docs/three/MF/V3/Tasks/HeatMap.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.HeatMap API documentation - + diff --git a/docs/three/MF/V3/Tasks/Import.html b/docs/three/MF/V3/Tasks/Import.html index c026777..2bbb646 100644 --- a/docs/three/MF/V3/Tasks/Import.html +++ b/docs/three/MF/V3/Tasks/Import.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Import API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListExportFormats.html b/docs/three/MF/V3/Tasks/ListExportFormats.html index 3e0e92a..ac33f87 100644 --- a/docs/three/MF/V3/Tasks/ListExportFormats.html +++ b/docs/three/MF/V3/Tasks/ListExportFormats.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListExportFormats API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListGroups.html b/docs/three/MF/V3/Tasks/ListGroups.html index 27ccb18..dfb957b 100644 --- a/docs/three/MF/V3/Tasks/ListGroups.html +++ b/docs/three/MF/V3/Tasks/ListGroups.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListGroups API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListNetworkInterfaces.html b/docs/three/MF/V3/Tasks/ListNetworkInterfaces.html index b637ebd..dc5852a 100644 --- a/docs/three/MF/V3/Tasks/ListNetworkInterfaces.html +++ b/docs/three/MF/V3/Tasks/ListNetworkInterfaces.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListNetworkInterfaces API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListProjects.html b/docs/three/MF/V3/Tasks/ListProjects.html index 8775761..2265268 100644 --- a/docs/three/MF/V3/Tasks/ListProjects.html +++ b/docs/three/MF/V3/Tasks/ListProjects.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListProjects API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListScannerProjects.html b/docs/three/MF/V3/Tasks/ListScannerProjects.html new file mode 100644 index 0000000..1402f1b --- /dev/null +++ b/docs/three/MF/V3/Tasks/ListScannerProjects.html @@ -0,0 +1,643 @@ + + + + + + + three.MF.V3.Tasks.ListScannerProjects API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.ListScannerProjects

+ + + + + + +
 1from MF.V3.Descriptors.Project import Project
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3from typing import List
+ 4
+ 5
+ 6class ListScannerProjects:
+ 7    """*
+ 8    List the projects on the connected scanner (desktop engine only).
+ 9
+10    The counterpart of `ListProjects`, which lists the engine's local projects.
+11
+12    > Request example:
+13
+14    ```json
+15    {
+16    "Task":{ "Index":1, "Type":"ListScannerProjects" }
+17    }
+18    ```
+19
+20    > Response example:
+21
+22    ```json
+23    {
+24    "Task":{
+25    "Index":1,
+26    "Type":"ListScannerProjects",
+27    "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+28    "State":"Completed"
+29    }
+30    }
+31    ```
+32    """
+33    class Request:
+34
+35        """
+36         Client request for the `ListScannerProjects` task.
+37        """
+38        def __init__(self, Index: int, Type: str):
+39            # A unique identifier generated by the client.
+40            self.Index = Index
+41            # "ListScannerProjects"
+42            self.Type = Type
+43
+44    class Response:
+45
+46        """
+47         Server response for the `ListScannerProjects` task.
+48        """
+49        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+50            # The unique identifier generated by the client.
+51            self.Index = Index
+52            # "ListScannerProjects"
+53            self.Type = Type
+54            # The scanner's project list.
+55            self.Output = Output
+56            # The current state of the task.
+57            self.State = State
+58            # A string describing the error if the task has failed.
+59            self.Error = Error
+60
+61    def __init__(self):
+62        pass
+
+ + +
+
+ +
+ + class + ListScannerProjects: + + + +
+ +
 7class ListScannerProjects:
+ 8    """*
+ 9    List the projects on the connected scanner (desktop engine only).
+10
+11    The counterpart of `ListProjects`, which lists the engine's local projects.
+12
+13    > Request example:
+14
+15    ```json
+16    {
+17    "Task":{ "Index":1, "Type":"ListScannerProjects" }
+18    }
+19    ```
+20
+21    > Response example:
+22
+23    ```json
+24    {
+25    "Task":{
+26    "Index":1,
+27    "Type":"ListScannerProjects",
+28    "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+29    "State":"Completed"
+30    }
+31    }
+32    ```
+33    """
+34    class Request:
+35
+36        """
+37         Client request for the `ListScannerProjects` task.
+38        """
+39        def __init__(self, Index: int, Type: str):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "ListScannerProjects"
+43            self.Type = Type
+44
+45    class Response:
+46
+47        """
+48         Server response for the `ListScannerProjects` task.
+49        """
+50        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+51            # The unique identifier generated by the client.
+52            self.Index = Index
+53            # "ListScannerProjects"
+54            self.Type = Type
+55            # The scanner's project list.
+56            self.Output = Output
+57            # The current state of the task.
+58            self.State = State
+59            # A string describing the error if the task has failed.
+60            self.Error = Error
+61
+62    def __init__(self):
+63        pass
+
+ + +

* +List the projects on the connected scanner (desktop engine only).

+ +

The counterpart of ListProjects, which lists the engine's local projects.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"ListScannerProjects" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"ListScannerProjects",
+"Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + ListScannerProjects.Request: + + + +
+ +
34    class Request:
+35
+36        """
+37         Client request for the `ListScannerProjects` task.
+38        """
+39        def __init__(self, Index: int, Type: str):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "ListScannerProjects"
+43            self.Type = Type
+
+ + +

Client request for the ListScannerProjects task.

+
+ + +
+ +
+ + ListScannerProjects.Request(Index: int, Type: str) + + + +
+ +
39        def __init__(self, Index: int, Type: str):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "ListScannerProjects"
+43            self.Type = Type
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ +
+ + class + ListScannerProjects.Response: + + + +
+ +
45    class Response:
+46
+47        """
+48         Server response for the `ListScannerProjects` task.
+49        """
+50        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+51            # The unique identifier generated by the client.
+52            self.Index = Index
+53            # "ListScannerProjects"
+54            self.Type = Type
+55            # The scanner's project list.
+56            self.Output = Output
+57            # The current state of the task.
+58            self.State = State
+59            # A string describing the error if the task has failed.
+60            self.Error = Error
+
+ + +

Server response for the ListScannerProjects task.

+
+ + +
+ +
+ + ListScannerProjects.Response( Index: int, Type: str, Output: List[MF.V3.Descriptors.Project.Project.Brief] = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
50        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+51            # The unique identifier generated by the client.
+52            self.Index = Index
+53            # "ListScannerProjects"
+54            self.Type = Type
+55            # The scanner's project list.
+56            self.Output = Output
+57            # The current state of the task.
+58            self.State = State
+59            # A string describing the error if the task has failed.
+60            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/ListScans.html b/docs/three/MF/V3/Tasks/ListScans.html index f687402..b699886 100644 --- a/docs/three/MF/V3/Tasks/ListScans.html +++ b/docs/three/MF/V3/Tasks/ListScans.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListScans API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListSettings.html b/docs/three/MF/V3/Tasks/ListSettings.html index ed64931..9bb2afd 100644 --- a/docs/three/MF/V3/Tasks/ListSettings.html +++ b/docs/three/MF/V3/Tasks/ListSettings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListSettings API documentation - + diff --git a/docs/three/MF/V3/Tasks/ListWifi.html b/docs/three/MF/V3/Tasks/ListWifi.html index 319ee9d..b86cf97 100644 --- a/docs/three/MF/V3/Tasks/ListWifi.html +++ b/docs/three/MF/V3/Tasks/ListWifi.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ListWifi API documentation - + diff --git a/docs/three/MF/V3/Tasks/Merge.html b/docs/three/MF/V3/Tasks/Merge.html index 76b15d6..b42e9c8 100644 --- a/docs/three/MF/V3/Tasks/Merge.html +++ b/docs/three/MF/V3/Tasks/Merge.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Merge API documentation - + diff --git a/docs/three/MF/V3/Tasks/MergeData.html b/docs/three/MF/V3/Tasks/MergeData.html index 937b948..163a3fa 100644 --- a/docs/three/MF/V3/Tasks/MergeData.html +++ b/docs/three/MF/V3/Tasks/MergeData.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.MergeData API documentation - + diff --git a/docs/three/MF/V3/Tasks/MoveGroup.html b/docs/three/MF/V3/Tasks/MoveGroup.html index aded111..2b5379d 100644 --- a/docs/three/MF/V3/Tasks/MoveGroup.html +++ b/docs/three/MF/V3/Tasks/MoveGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.MoveGroup API documentation - + diff --git a/docs/three/MF/V3/Tasks/NewGroup.html b/docs/three/MF/V3/Tasks/NewGroup.html index 80ec3e1..356151f 100644 --- a/docs/three/MF/V3/Tasks/NewGroup.html +++ b/docs/three/MF/V3/Tasks/NewGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.NewGroup API documentation - + diff --git a/docs/three/MF/V3/Tasks/NewProject.html b/docs/three/MF/V3/Tasks/NewProject.html index 30cd3fe..2f780bf 100644 --- a/docs/three/MF/V3/Tasks/NewProject.html +++ b/docs/three/MF/V3/Tasks/NewProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.NewProject API documentation - + diff --git a/docs/three/MF/V3/Tasks/NewScan.html b/docs/three/MF/V3/Tasks/NewScan.html index d0f5abc..9f589c7 100644 --- a/docs/three/MF/V3/Tasks/NewScan.html +++ b/docs/three/MF/V3/Tasks/NewScan.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.NewScan API documentation - + diff --git a/docs/three/MF/V3/Tasks/OpenProject.html b/docs/three/MF/V3/Tasks/OpenProject.html index 23ad6f8..ac192d9 100644 --- a/docs/three/MF/V3/Tasks/OpenProject.html +++ b/docs/three/MF/V3/Tasks/OpenProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.OpenProject API documentation - + diff --git a/docs/three/MF/V3/Tasks/PopSettings.html b/docs/three/MF/V3/Tasks/PopSettings.html index b49eb59..02dadda 100644 --- a/docs/three/MF/V3/Tasks/PopSettings.html +++ b/docs/three/MF/V3/Tasks/PopSettings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.PopSettings API documentation - + diff --git a/docs/three/MF/V3/Tasks/PullProject.html b/docs/three/MF/V3/Tasks/PullProject.html new file mode 100644 index 0000000..f9ca567 --- /dev/null +++ b/docs/three/MF/V3/Tasks/PullProject.html @@ -0,0 +1,674 @@ + + + + + + + three.MF.V3.Tasks.PullProject API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.PullProject

+ + + + + + +
 1from MF.V3.Descriptors.Project import Project
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3from typing import List
+ 4
+ 5
+ 6class PullProject:
+ 7    """*
+ 8    Copy a project from the connected scanner into the local workspace
+ 9    (desktop engine only).
+10
+11    The engine downloads the scanner project's archive and imports it as a new
+12    local copy (it always receives a new project index).  Progress covers the
+13    archive, transfer and extraction phases as one range.
+14
+15    > Request example:
+16
+17    ```json
+18    {
+19    "Task":{ "Index":1, "Type":"PullProject", "Input":2 }
+20    }
+21    ```
+22
+23    > Response example:
+24
+25    ```json
+26    {
+27    "Task":{
+28    "Index":1,
+29    "Type":"PullProject",
+30    "Output":[{ "index":4, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+31    "State":"Completed"
+32    }
+33    }
+34    ```
+35    """
+36    class Request:
+37
+38        """
+39         Client request for the `PullProject` task.
+40        """
+41        def __init__(self, Index: int, Type: str, Input: int):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "PullProject"
+45            self.Type = Type
+46            # The scanner project index to copy to the local workspace.
+47            self.Input = Input
+48
+49    class Response:
+50
+51        """
+52         Server response for the `PullProject` task.
+53        """
+54        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+55            # The unique identifier generated by the client.
+56            self.Index = Index
+57            # "PullProject"
+58            self.Type = Type
+59            # The engine's updated local project list.
+60            self.Output = Output
+61            # The current state of the task.
+62            self.State = State
+63            # A string describing the error if the task has failed.
+64            self.Error = Error
+65
+66    def __init__(self):
+67        pass
+
+ + +
+
+ +
+ + class + PullProject: + + + +
+ +
 7class PullProject:
+ 8    """*
+ 9    Copy a project from the connected scanner into the local workspace
+10    (desktop engine only).
+11
+12    The engine downloads the scanner project's archive and imports it as a new
+13    local copy (it always receives a new project index).  Progress covers the
+14    archive, transfer and extraction phases as one range.
+15
+16    > Request example:
+17
+18    ```json
+19    {
+20    "Task":{ "Index":1, "Type":"PullProject", "Input":2 }
+21    }
+22    ```
+23
+24    > Response example:
+25
+26    ```json
+27    {
+28    "Task":{
+29    "Index":1,
+30    "Type":"PullProject",
+31    "Output":[{ "index":4, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+32    "State":"Completed"
+33    }
+34    }
+35    ```
+36    """
+37    class Request:
+38
+39        """
+40         Client request for the `PullProject` task.
+41        """
+42        def __init__(self, Index: int, Type: str, Input: int):
+43            # A unique identifier generated by the client.
+44            self.Index = Index
+45            # "PullProject"
+46            self.Type = Type
+47            # The scanner project index to copy to the local workspace.
+48            self.Input = Input
+49
+50    class Response:
+51
+52        """
+53         Server response for the `PullProject` task.
+54        """
+55        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+56            # The unique identifier generated by the client.
+57            self.Index = Index
+58            # "PullProject"
+59            self.Type = Type
+60            # The engine's updated local project list.
+61            self.Output = Output
+62            # The current state of the task.
+63            self.State = State
+64            # A string describing the error if the task has failed.
+65            self.Error = Error
+66
+67    def __init__(self):
+68        pass
+
+ + +

* +Copy a project from the connected scanner into the local workspace +(desktop engine only).

+ +

The engine downloads the scanner project's archive and imports it as a new +local copy (it always receives a new project index). Progress covers the +archive, transfer and extraction phases as one range.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"PullProject", "Input":2 }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"PullProject",
+"Output":[{ "index":4, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + PullProject.Request: + + + +
+ +
37    class Request:
+38
+39        """
+40         Client request for the `PullProject` task.
+41        """
+42        def __init__(self, Index: int, Type: str, Input: int):
+43            # A unique identifier generated by the client.
+44            self.Index = Index
+45            # "PullProject"
+46            self.Type = Type
+47            # The scanner project index to copy to the local workspace.
+48            self.Input = Input
+
+ + +

Client request for the PullProject task.

+
+ + +
+ +
+ + PullProject.Request(Index: int, Type: str, Input: int) + + + +
+ +
42        def __init__(self, Index: int, Type: str, Input: int):
+43            # A unique identifier generated by the client.
+44            self.Index = Index
+45            # "PullProject"
+46            self.Type = Type
+47            # The scanner project index to copy to the local workspace.
+48            self.Input = Input
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Input + + +
+ + + + +
+
+
+ +
+ + class + PullProject.Response: + + + +
+ +
50    class Response:
+51
+52        """
+53         Server response for the `PullProject` task.
+54        """
+55        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+56            # The unique identifier generated by the client.
+57            self.Index = Index
+58            # "PullProject"
+59            self.Type = Type
+60            # The engine's updated local project list.
+61            self.Output = Output
+62            # The current state of the task.
+63            self.State = State
+64            # A string describing the error if the task has failed.
+65            self.Error = Error
+
+ + +

Server response for the PullProject task.

+
+ + +
+ +
+ + PullProject.Response( Index: int, Type: str, Output: List[MF.V3.Descriptors.Project.Project.Brief] = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
55        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+56            # The unique identifier generated by the client.
+57            self.Index = Index
+58            # "PullProject"
+59            self.Type = Type
+60            # The engine's updated local project list.
+61            self.Output = Output
+62            # The current state of the task.
+63            self.State = State
+64            # A string describing the error if the task has failed.
+65            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/PushProject.html b/docs/three/MF/V3/Tasks/PushProject.html new file mode 100644 index 0000000..fdbc26e --- /dev/null +++ b/docs/three/MF/V3/Tasks/PushProject.html @@ -0,0 +1,671 @@ + + + + + + + three.MF.V3.Tasks.PushProject API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.PushProject

+ + + + + + +
 1from MF.V3.Descriptors.Project import Project
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3from typing import List
+ 4
+ 5
+ 6class PushProject:
+ 7    """*
+ 8    Copy a local project to the connected scanner (desktop engine only).
+ 9
+10    The engine archives the local project, uploads it to the scanner, and the
+11    scanner imports it as a new copy (it always receives a new project index).
+12    Progress covers the archive, transfer and extraction phases as one range.
+13
+14    > Request example:
+15
+16    ```json
+17    {
+18    "Task":{ "Index":1, "Type":"PushProject", "Input":3 }
+19    }
+20    ```
+21
+22    > Response example:
+23
+24    ```json
+25    {
+26    "Task":{
+27    "Index":1,
+28    "Type":"PushProject",
+29    "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+30    "State":"Completed"
+31    }
+32    }
+33    ```
+34    """
+35    class Request:
+36
+37        """
+38         Client request for the `PushProject` task.
+39        """
+40        def __init__(self, Index: int, Type: str, Input: int):
+41            # A unique identifier generated by the client.
+42            self.Index = Index
+43            # "PushProject"
+44            self.Type = Type
+45            # The local project index to copy to the scanner.
+46            self.Input = Input
+47
+48    class Response:
+49
+50        """
+51         Server response for the `PushProject` task.
+52        """
+53        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+54            # The unique identifier generated by the client.
+55            self.Index = Index
+56            # "PushProject"
+57            self.Type = Type
+58            # The scanner's updated project list.
+59            self.Output = Output
+60            # The current state of the task.
+61            self.State = State
+62            # A string describing the error if the task has failed.
+63            self.Error = Error
+64
+65    def __init__(self):
+66        pass
+
+ + +
+
+ +
+ + class + PushProject: + + + +
+ +
 7class PushProject:
+ 8    """*
+ 9    Copy a local project to the connected scanner (desktop engine only).
+10
+11    The engine archives the local project, uploads it to the scanner, and the
+12    scanner imports it as a new copy (it always receives a new project index).
+13    Progress covers the archive, transfer and extraction phases as one range.
+14
+15    > Request example:
+16
+17    ```json
+18    {
+19    "Task":{ "Index":1, "Type":"PushProject", "Input":3 }
+20    }
+21    ```
+22
+23    > Response example:
+24
+25    ```json
+26    {
+27    "Task":{
+28    "Index":1,
+29    "Type":"PushProject",
+30    "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+31    "State":"Completed"
+32    }
+33    }
+34    ```
+35    """
+36    class Request:
+37
+38        """
+39         Client request for the `PushProject` task.
+40        """
+41        def __init__(self, Index: int, Type: str, Input: int):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "PushProject"
+45            self.Type = Type
+46            # The local project index to copy to the scanner.
+47            self.Input = Input
+48
+49    class Response:
+50
+51        """
+52         Server response for the `PushProject` task.
+53        """
+54        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+55            # The unique identifier generated by the client.
+56            self.Index = Index
+57            # "PushProject"
+58            self.Type = Type
+59            # The scanner's updated project list.
+60            self.Output = Output
+61            # The current state of the task.
+62            self.State = State
+63            # A string describing the error if the task has failed.
+64            self.Error = Error
+65
+66    def __init__(self):
+67        pass
+
+ + +

* +Copy a local project to the connected scanner (desktop engine only).

+ +

The engine archives the local project, uploads it to the scanner, and the +scanner imports it as a new copy (it always receives a new project index). +Progress covers the archive, transfer and extraction phases as one range.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"PushProject", "Input":3 }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"PushProject",
+"Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + PushProject.Request: + + + +
+ +
36    class Request:
+37
+38        """
+39         Client request for the `PushProject` task.
+40        """
+41        def __init__(self, Index: int, Type: str, Input: int):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "PushProject"
+45            self.Type = Type
+46            # The local project index to copy to the scanner.
+47            self.Input = Input
+
+ + +

Client request for the PushProject task.

+
+ + +
+ +
+ + PushProject.Request(Index: int, Type: str, Input: int) + + + +
+ +
41        def __init__(self, Index: int, Type: str, Input: int):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "PushProject"
+45            self.Type = Type
+46            # The local project index to copy to the scanner.
+47            self.Input = Input
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Input + + +
+ + + + +
+
+
+ +
+ + class + PushProject.Response: + + + +
+ +
49    class Response:
+50
+51        """
+52         Server response for the `PushProject` task.
+53        """
+54        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+55            # The unique identifier generated by the client.
+56            self.Index = Index
+57            # "PushProject"
+58            self.Type = Type
+59            # The scanner's updated project list.
+60            self.Output = Output
+61            # The current state of the task.
+62            self.State = State
+63            # A string describing the error if the task has failed.
+64            self.Error = Error
+
+ + +

Server response for the PushProject task.

+
+ + +
+ +
+ + PushProject.Response( Index: int, Type: str, Output: List[MF.V3.Descriptors.Project.Project.Brief] = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
54        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+55            # The unique identifier generated by the client.
+56            self.Index = Index
+57            # "PushProject"
+58            self.Type = Type
+59            # The scanner's updated project list.
+60            self.Output = Output
+61            # The current state of the task.
+62            self.State = State
+63            # A string describing the error if the task has failed.
+64            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/PushSettings.html b/docs/three/MF/V3/Tasks/PushSettings.html index 83c12f0..1efbf19 100644 --- a/docs/three/MF/V3/Tasks/PushSettings.html +++ b/docs/three/MF/V3/Tasks/PushSettings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.PushSettings API documentation - + diff --git a/docs/three/MF/V3/Tasks/Reboot.html b/docs/three/MF/V3/Tasks/Reboot.html index baac187..2244292 100644 --- a/docs/three/MF/V3/Tasks/Reboot.html +++ b/docs/three/MF/V3/Tasks/Reboot.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Reboot API documentation - + diff --git a/docs/three/MF/V3/Tasks/RemoveGroups.html b/docs/three/MF/V3/Tasks/RemoveGroups.html index 0c3e4d0..23c8bbb 100644 --- a/docs/three/MF/V3/Tasks/RemoveGroups.html +++ b/docs/three/MF/V3/Tasks/RemoveGroups.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.RemoveGroups API documentation - + diff --git a/docs/three/MF/V3/Tasks/RemoveProjects.html b/docs/three/MF/V3/Tasks/RemoveProjects.html index 4bf11c8..9fab084 100644 --- a/docs/three/MF/V3/Tasks/RemoveProjects.html +++ b/docs/three/MF/V3/Tasks/RemoveProjects.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.RemoveProjects API documentation - + diff --git a/docs/three/MF/V3/Tasks/RemoveScannerProjects.html b/docs/three/MF/V3/Tasks/RemoveScannerProjects.html new file mode 100644 index 0000000..bf33e95 --- /dev/null +++ b/docs/three/MF/V3/Tasks/RemoveScannerProjects.html @@ -0,0 +1,665 @@ + + + + + + + three.MF.V3.Tasks.RemoveScannerProjects API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.RemoveScannerProjects

+ + + + + + +
 1from MF.V3.Descriptors.Project import Project
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3from typing import List
+ 4
+ 5
+ 6class RemoveScannerProjects:
+ 7    """*
+ 8    Remove projects on the connected scanner (desktop engine only).
+ 9
+10    The counterpart of `RemoveProjects`, which removes local projects.
+11
+12    > Request example:
+13
+14    ```json
+15    {
+16    "Task":{ "Index":1, "Type":"RemoveScannerProjects", "Input":[2, 3] }
+17    }
+18    ```
+19
+20    > Response example:
+21
+22    ```json
+23    {
+24    "Task":{
+25    "Index":1,
+26    "Type":"RemoveScannerProjects",
+27    "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+28    "State":"Completed"
+29    }
+30    }
+31    ```
+32    """
+33    class Request:
+34
+35        """
+36         Client request for the `RemoveScannerProjects` task.
+37        """
+38        def __init__(self, Index: int, Type: str, Input: List[int] = None):
+39            # A unique identifier generated by the client.
+40            self.Index = Index
+41            # "RemoveScannerProjects"
+42            self.Type = Type
+43            # The scanner project indices to remove.
+44            self.Input = Input
+45
+46    class Response:
+47
+48        """
+49         Server response for the `RemoveScannerProjects` task.
+50        """
+51        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+52            # The unique identifier generated by the client.
+53            self.Index = Index
+54            # "RemoveScannerProjects"
+55            self.Type = Type
+56            # The scanner's updated project list.
+57            self.Output = Output
+58            # The current state of the task.
+59            self.State = State
+60            # A string describing the error if the task has failed.
+61            self.Error = Error
+62
+63    def __init__(self):
+64        pass
+
+ + +
+
+ +
+ + class + RemoveScannerProjects: + + + +
+ +
 7class RemoveScannerProjects:
+ 8    """*
+ 9    Remove projects on the connected scanner (desktop engine only).
+10
+11    The counterpart of `RemoveProjects`, which removes local projects.
+12
+13    > Request example:
+14
+15    ```json
+16    {
+17    "Task":{ "Index":1, "Type":"RemoveScannerProjects", "Input":[2, 3] }
+18    }
+19    ```
+20
+21    > Response example:
+22
+23    ```json
+24    {
+25    "Task":{
+26    "Index":1,
+27    "Type":"RemoveScannerProjects",
+28    "Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+29    "State":"Completed"
+30    }
+31    }
+32    ```
+33    """
+34    class Request:
+35
+36        """
+37         Client request for the `RemoveScannerProjects` task.
+38        """
+39        def __init__(self, Index: int, Type: str, Input: List[int] = None):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "RemoveScannerProjects"
+43            self.Type = Type
+44            # The scanner project indices to remove.
+45            self.Input = Input
+46
+47    class Response:
+48
+49        """
+50         Server response for the `RemoveScannerProjects` task.
+51        """
+52        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "RemoveScannerProjects"
+56            self.Type = Type
+57            # The scanner's updated project list.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+63
+64    def __init__(self):
+65        pass
+
+ + +

* +Remove projects on the connected scanner (desktop engine only).

+ +

The counterpart of RemoveProjects, which removes local projects.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"RemoveScannerProjects", "Input":[2, 3] }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"RemoveScannerProjects",
+"Output":[{ "index":1, "name":"MyProject", "size":90010153, "modified":[2026,7,13,11,42,28] }],
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + RemoveScannerProjects.Request: + + + +
+ +
34    class Request:
+35
+36        """
+37         Client request for the `RemoveScannerProjects` task.
+38        """
+39        def __init__(self, Index: int, Type: str, Input: List[int] = None):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "RemoveScannerProjects"
+43            self.Type = Type
+44            # The scanner project indices to remove.
+45            self.Input = Input
+
+ + +

Client request for the RemoveScannerProjects task.

+
+ + +
+ +
+ + RemoveScannerProjects.Request(Index: int, Type: str, Input: List[int] = None) + + + +
+ +
39        def __init__(self, Index: int, Type: str, Input: List[int] = None):
+40            # A unique identifier generated by the client.
+41            self.Index = Index
+42            # "RemoveScannerProjects"
+43            self.Type = Type
+44            # The scanner project indices to remove.
+45            self.Input = Input
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Input + + +
+ + + + +
+
+
+ +
+ + class + RemoveScannerProjects.Response: + + + +
+ +
47    class Response:
+48
+49        """
+50         Server response for the `RemoveScannerProjects` task.
+51        """
+52        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "RemoveScannerProjects"
+56            self.Type = Type
+57            # The scanner's updated project list.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+
+ + +

Server response for the RemoveScannerProjects task.

+
+ + +
+ +
+ + RemoveScannerProjects.Response( Index: int, Type: str, Output: List[MF.V3.Descriptors.Project.Project.Brief] = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
52        def __init__(self, Index: int, Type: str, Output: List[Project.Brief] = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "RemoveScannerProjects"
+56            self.Type = Type
+57            # The scanner's updated project list.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/RestoreFactoryCalibration.html b/docs/three/MF/V3/Tasks/RestoreFactoryCalibration.html index 9a76682..d142426 100644 --- a/docs/three/MF/V3/Tasks/RestoreFactoryCalibration.html +++ b/docs/three/MF/V3/Tasks/RestoreFactoryCalibration.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.RestoreFactoryCalibration API documentation - + diff --git a/docs/three/MF/V3/Tasks/RotateTurntable.html b/docs/three/MF/V3/Tasks/RotateTurntable.html index 8efd876..d3d1efe 100644 --- a/docs/three/MF/V3/Tasks/RotateTurntable.html +++ b/docs/three/MF/V3/Tasks/RotateTurntable.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.RotateTurntable API documentation - + diff --git a/docs/three/MF/V3/Tasks/ScanData.html b/docs/three/MF/V3/Tasks/ScanData.html index f80b5bf..7d85849 100644 --- a/docs/three/MF/V3/Tasks/ScanData.html +++ b/docs/three/MF/V3/Tasks/ScanData.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.ScanData API documentation - + diff --git a/docs/three/MF/V3/Tasks/SetCameras.html b/docs/three/MF/V3/Tasks/SetCameras.html index 70a5da9..6635b2c 100644 --- a/docs/three/MF/V3/Tasks/SetCameras.html +++ b/docs/three/MF/V3/Tasks/SetCameras.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.SetCameras API documentation - + diff --git a/docs/three/MF/V3/Tasks/SetGroup.html b/docs/three/MF/V3/Tasks/SetGroup.html index e789446..8c026d7 100644 --- a/docs/three/MF/V3/Tasks/SetGroup.html +++ b/docs/three/MF/V3/Tasks/SetGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.SetGroup API documentation - + diff --git a/docs/three/MF/V3/Tasks/SetProcessingDevices.html b/docs/three/MF/V3/Tasks/SetProcessingDevices.html new file mode 100644 index 0000000..b1c69b8 --- /dev/null +++ b/docs/three/MF/V3/Tasks/SetProcessingDevices.html @@ -0,0 +1,636 @@ + + + + + + + three.MF.V3.Tasks.SetProcessingDevices API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.SetProcessingDevices

+ + + + + + +
 1from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 2from typing import List
+ 3
+ 4
+ 5class SetProcessingDevices:
+ 6    """*
+ 7    Select which side processes scan captures for this connection.
+ 8
+ 9    The input is a pair of booleans `[server, client]`.  With client processing
+10    enabled the server streams raw scan captures (see the `ScanCapture`
+11    descriptor) to this connection during `NewScan` instead of processing them
+12    on-device.  The setting is per-connection: other clients are unaffected.
+13
+14    > Request example:
+15
+16    ```json
+17    {
+18    "Task":{ "Index":1, "Type":"SetProcessingDevices", "Input":[false, true] }
+19    }
+20    ```
+21
+22    > Response example:
+23
+24    ```json
+25    {
+26    "Task":{ "Index":1, "Type":"SetProcessingDevices", "State":"Completed" }
+27    }
+28    ```
+29    """
+30    class Request:
+31
+32        """
+33         Client request for the `SetProcessingDevices` task.
+34        """
+35        def __init__(self, Index: int, Type: str, Input: List[bool] = None):
+36            # A unique identifier generated by the client.
+37            self.Index = Index
+38            # "SetProcessingDevices"
+39            self.Type = Type
+40            # Processing device flags: [server, client].
+41            self.Input = Input
+42
+43    class Response:
+44
+45        """
+46         Server response for the `SetProcessingDevices` task.
+47        """
+48        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+49            # The unique identifier generated by the client.
+50            self.Index = Index
+51            # "SetProcessingDevices"
+52            self.Type = Type
+53            # The current state of the task.
+54            self.State = State
+55            # A string describing the error if the task has failed.
+56            self.Error = Error
+57
+58    def __init__(self):
+59        pass
+
+ + +
+
+ +
+ + class + SetProcessingDevices: + + + +
+ +
 6class SetProcessingDevices:
+ 7    """*
+ 8    Select which side processes scan captures for this connection.
+ 9
+10    The input is a pair of booleans `[server, client]`.  With client processing
+11    enabled the server streams raw scan captures (see the `ScanCapture`
+12    descriptor) to this connection during `NewScan` instead of processing them
+13    on-device.  The setting is per-connection: other clients are unaffected.
+14
+15    > Request example:
+16
+17    ```json
+18    {
+19    "Task":{ "Index":1, "Type":"SetProcessingDevices", "Input":[false, true] }
+20    }
+21    ```
+22
+23    > Response example:
+24
+25    ```json
+26    {
+27    "Task":{ "Index":1, "Type":"SetProcessingDevices", "State":"Completed" }
+28    }
+29    ```
+30    """
+31    class Request:
+32
+33        """
+34         Client request for the `SetProcessingDevices` task.
+35        """
+36        def __init__(self, Index: int, Type: str, Input: List[bool] = None):
+37            # A unique identifier generated by the client.
+38            self.Index = Index
+39            # "SetProcessingDevices"
+40            self.Type = Type
+41            # Processing device flags: [server, client].
+42            self.Input = Input
+43
+44    class Response:
+45
+46        """
+47         Server response for the `SetProcessingDevices` task.
+48        """
+49        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+50            # The unique identifier generated by the client.
+51            self.Index = Index
+52            # "SetProcessingDevices"
+53            self.Type = Type
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+58
+59    def __init__(self):
+60        pass
+
+ + +

* +Select which side processes scan captures for this connection.

+ +

The input is a pair of booleans [server, client]. With client processing +enabled the server streams raw scan captures (see the ScanCapture +descriptor) to this connection during NewScan instead of processing them +on-device. The setting is per-connection: other clients are unaffected.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"SetProcessingDevices", "Input":[false, true] }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"SetProcessingDevices", "State":"Completed" }
+}
+
+
+
+ + +
+
+ +
+ + class + SetProcessingDevices.Request: + + + +
+ +
31    class Request:
+32
+33        """
+34         Client request for the `SetProcessingDevices` task.
+35        """
+36        def __init__(self, Index: int, Type: str, Input: List[bool] = None):
+37            # A unique identifier generated by the client.
+38            self.Index = Index
+39            # "SetProcessingDevices"
+40            self.Type = Type
+41            # Processing device flags: [server, client].
+42            self.Input = Input
+
+ + +

Client request for the SetProcessingDevices task.

+
+ + +
+ +
+ + SetProcessingDevices.Request(Index: int, Type: str, Input: List[bool] = None) + + + +
+ +
36        def __init__(self, Index: int, Type: str, Input: List[bool] = None):
+37            # A unique identifier generated by the client.
+38            self.Index = Index
+39            # "SetProcessingDevices"
+40            self.Type = Type
+41            # Processing device flags: [server, client].
+42            self.Input = Input
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Input + + +
+ + + + +
+
+
+ +
+ + class + SetProcessingDevices.Response: + + + +
+ +
44    class Response:
+45
+46        """
+47         Server response for the `SetProcessingDevices` task.
+48        """
+49        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+50            # The unique identifier generated by the client.
+51            self.Index = Index
+52            # "SetProcessingDevices"
+53            self.Type = Type
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+
+ + +

Server response for the SetProcessingDevices task.

+
+ + +
+ +
+ + SetProcessingDevices.Response( Index: int, Type: str, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
49        def __init__(self, Index: int, Type: str, State: MF_V3_Task_TaskState = None, Error: str = None):
+50            # The unique identifier generated by the client.
+51            self.Index = Index
+52            # "SetProcessingDevices"
+53            self.Type = Type
+54            # The current state of the task.
+55            self.State = State
+56            # A string describing the error if the task has failed.
+57            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/SetProject.html b/docs/three/MF/V3/Tasks/SetProject.html index 91f1527..c3e8e40 100644 --- a/docs/three/MF/V3/Tasks/SetProject.html +++ b/docs/three/MF/V3/Tasks/SetProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.SetProject API documentation - + diff --git a/docs/three/MF/V3/Tasks/SetProjector.html b/docs/three/MF/V3/Tasks/SetProjector.html index 8fbc2df..3152055 100644 --- a/docs/three/MF/V3/Tasks/SetProjector.html +++ b/docs/three/MF/V3/Tasks/SetProjector.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.SetProjector API documentation - + diff --git a/docs/three/MF/V3/Tasks/Shutdown.html b/docs/three/MF/V3/Tasks/Shutdown.html index 37ab6f9..d60df12 100644 --- a/docs/three/MF/V3/Tasks/Shutdown.html +++ b/docs/three/MF/V3/Tasks/Shutdown.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Shutdown API documentation - + diff --git a/docs/three/MF/V3/Tasks/Smooth.html b/docs/three/MF/V3/Tasks/Smooth.html index 08fcfda..be9c87d 100644 --- a/docs/three/MF/V3/Tasks/Smooth.html +++ b/docs/three/MF/V3/Tasks/Smooth.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.Smooth API documentation - + diff --git a/docs/three/MF/V3/Tasks/SplitGroup.html b/docs/three/MF/V3/Tasks/SplitGroup.html index f8b9911..e6e8967 100644 --- a/docs/three/MF/V3/Tasks/SplitGroup.html +++ b/docs/three/MF/V3/Tasks/SplitGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.SplitGroup API documentation - + diff --git a/docs/three/MF/V3/Tasks/StartVideo.html b/docs/three/MF/V3/Tasks/StartVideo.html index 118ba80..cb38fb4 100644 --- a/docs/three/MF/V3/Tasks/StartVideo.html +++ b/docs/three/MF/V3/Tasks/StartVideo.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.StartVideo API documentation - + diff --git a/docs/three/MF/V3/Tasks/StopVideo.html b/docs/three/MF/V3/Tasks/StopVideo.html index 0596ba0..07155b4 100644 --- a/docs/three/MF/V3/Tasks/StopVideo.html +++ b/docs/three/MF/V3/Tasks/StopVideo.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.StopVideo API documentation - + diff --git a/docs/three/MF/V3/Tasks/StorageInfo.html b/docs/three/MF/V3/Tasks/StorageInfo.html new file mode 100644 index 0000000..a0f3644 --- /dev/null +++ b/docs/three/MF/V3/Tasks/StorageInfo.html @@ -0,0 +1,651 @@ + + + + + + + three.MF.V3.Tasks.StorageInfo API documentation + + + + + + + + + +
+
+

+three.MF.V3.Tasks.StorageInfo

+ + + + + + +
 1from MF.V3.Descriptors.StorageInfo import StorageInfo
+ 2from MF.V3.Task import TaskState as MF_V3_Task_TaskState
+ 3
+ 4
+ 5class StorageInfo:
+ 6    """*
+ 7    Get the local and scanner storage space (desktop engine only).
+ 8
+ 9    The scanner space is absent when no scanner is connected.
+10
+11    > Request example:
+12
+13    ```json
+14    {
+15    "Task":{ "Index":1, "Type":"StorageInfo" }
+16    }
+17    ```
+18
+19    > Response example:
+20
+21    ```json
+22    {
+23    "Task":{
+24    "Index":1,
+25    "Type":"StorageInfo",
+26    "Output":{
+27    "local":{ "available":349709045760, "capacity":750199750656 },
+28    "scanner":{ "available":19096510464, "capacity":30482370560 }
+29    },
+30    "State":"Completed"
+31    }
+32    }
+33    ```
+34    """
+35    class Request:
+36
+37        """
+38         Client request for the `StorageInfo` task.
+39        """
+40        def __init__(self, Index: int, Type: str):
+41            # A unique identifier generated by the client.
+42            self.Index = Index
+43            # "StorageInfo"
+44            self.Type = Type
+45
+46    class Response:
+47
+48        """
+49         Server response for the `StorageInfo` task.
+50        """
+51        def __init__(self, Index: int, Type: str, Output: StorageInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+52            # The unique identifier generated by the client.
+53            self.Index = Index
+54            # "StorageInfo"
+55            self.Type = Type
+56            # The local and scanner storage space.
+57            self.Output = Output
+58            # The current state of the task.
+59            self.State = State
+60            # A string describing the error if the task has failed.
+61            self.Error = Error
+62
+63    def __init__(self):
+64        pass
+
+ + +
+
+ +
+ + class + StorageInfo: + + + +
+ +
 6class StorageInfo:
+ 7    """*
+ 8    Get the local and scanner storage space (desktop engine only).
+ 9
+10    The scanner space is absent when no scanner is connected.
+11
+12    > Request example:
+13
+14    ```json
+15    {
+16    "Task":{ "Index":1, "Type":"StorageInfo" }
+17    }
+18    ```
+19
+20    > Response example:
+21
+22    ```json
+23    {
+24    "Task":{
+25    "Index":1,
+26    "Type":"StorageInfo",
+27    "Output":{
+28    "local":{ "available":349709045760, "capacity":750199750656 },
+29    "scanner":{ "available":19096510464, "capacity":30482370560 }
+30    },
+31    "State":"Completed"
+32    }
+33    }
+34    ```
+35    """
+36    class Request:
+37
+38        """
+39         Client request for the `StorageInfo` task.
+40        """
+41        def __init__(self, Index: int, Type: str):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "StorageInfo"
+45            self.Type = Type
+46
+47    class Response:
+48
+49        """
+50         Server response for the `StorageInfo` task.
+51        """
+52        def __init__(self, Index: int, Type: str, Output: StorageInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "StorageInfo"
+56            self.Type = Type
+57            # The local and scanner storage space.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+63
+64    def __init__(self):
+65        pass
+
+ + +

* +Get the local and scanner storage space (desktop engine only).

+ +

The scanner space is absent when no scanner is connected.

+ +
+

Request example:

+
+ +
+
{
+"Task":{ "Index":1, "Type":"StorageInfo" }
+}
+
+
+ +
+

Response example:

+
+ +
+
{
+"Task":{
+"Index":1,
+"Type":"StorageInfo",
+"Output":{
+"local":{ "available":349709045760, "capacity":750199750656 },
+"scanner":{ "available":19096510464, "capacity":30482370560 }
+},
+"State":"Completed"
+}
+}
+
+
+
+ + +
+
+ +
+ + class + StorageInfo.Request: + + + +
+ +
36    class Request:
+37
+38        """
+39         Client request for the `StorageInfo` task.
+40        """
+41        def __init__(self, Index: int, Type: str):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "StorageInfo"
+45            self.Type = Type
+
+ + +

Client request for the StorageInfo task.

+
+ + +
+ +
+ + StorageInfo.Request(Index: int, Type: str) + + + +
+ +
41        def __init__(self, Index: int, Type: str):
+42            # A unique identifier generated by the client.
+43            self.Index = Index
+44            # "StorageInfo"
+45            self.Type = Type
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ +
+ + class + StorageInfo.Response: + + + +
+ +
47    class Response:
+48
+49        """
+50         Server response for the `StorageInfo` task.
+51        """
+52        def __init__(self, Index: int, Type: str, Output: StorageInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "StorageInfo"
+56            self.Type = Type
+57            # The local and scanner storage space.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+
+ + +

Server response for the StorageInfo task.

+
+ + +
+ +
+ + StorageInfo.Response( Index: int, Type: str, Output: StorageInfo = None, State: MF.V3.Task.TaskState = None, Error: str = None) + + + +
+ +
52        def __init__(self, Index: int, Type: str, Output: StorageInfo = None, State: MF_V3_Task_TaskState = None, Error: str = None):
+53            # The unique identifier generated by the client.
+54            self.Index = Index
+55            # "StorageInfo"
+56            self.Type = Type
+57            # The local and scanner storage space.
+58            self.Output = Output
+59            # The current state of the task.
+60            self.State = State
+61            # A string describing the error if the task has failed.
+62            self.Error = Error
+
+ + + + +
+
+
+ Index + + +
+ + + + +
+
+
+ Type + + +
+ + + + +
+
+
+ Output + + +
+ + + + +
+
+
+ State + + +
+ + + + +
+
+
+ Error + + +
+ + + + +
+
+
+ + \ No newline at end of file diff --git a/docs/three/MF/V3/Tasks/SystemInfo.html b/docs/three/MF/V3/Tasks/SystemInfo.html index ddb0161..70354b8 100644 --- a/docs/three/MF/V3/Tasks/SystemInfo.html +++ b/docs/three/MF/V3/Tasks/SystemInfo.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.SystemInfo API documentation - + diff --git a/docs/three/MF/V3/Tasks/TransformGroup.html b/docs/three/MF/V3/Tasks/TransformGroup.html index 11fa7d8..5ce30ed 100644 --- a/docs/three/MF/V3/Tasks/TransformGroup.html +++ b/docs/three/MF/V3/Tasks/TransformGroup.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.TransformGroup API documentation - + diff --git a/docs/three/MF/V3/Tasks/TurntableCalibration.html b/docs/three/MF/V3/Tasks/TurntableCalibration.html index 1dce18d..8150b54 100644 --- a/docs/three/MF/V3/Tasks/TurntableCalibration.html +++ b/docs/three/MF/V3/Tasks/TurntableCalibration.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.TurntableCalibration API documentation - + diff --git a/docs/three/MF/V3/Tasks/UpdateSettings.html b/docs/three/MF/V3/Tasks/UpdateSettings.html index 9ca631a..dd0caf6 100644 --- a/docs/three/MF/V3/Tasks/UpdateSettings.html +++ b/docs/three/MF/V3/Tasks/UpdateSettings.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.UpdateSettings API documentation - + diff --git a/docs/three/MF/V3/Tasks/UploadProject.html b/docs/three/MF/V3/Tasks/UploadProject.html index 0321926..4e8347c 100644 --- a/docs/three/MF/V3/Tasks/UploadProject.html +++ b/docs/three/MF/V3/Tasks/UploadProject.html @@ -3,14 +3,14 @@ - + three.MF.V3.Tasks.UploadProject API documentation - + diff --git a/docs/three/MF/V3/Three.html b/docs/three/MF/V3/Three.html index 47db1fd..d8d5f90 100644 --- a/docs/three/MF/V3/Three.html +++ b/docs/three/MF/V3/Three.html @@ -3,14 +3,14 @@ - + three.MF.V3.Three API documentation - + @@ -286,970 +322,970 @@

38from MF.V3.Tasks.CaptureImage import CaptureImage as MF_V3_Tasks_CaptureImage 39from MF.V3.Tasks.ClearSettings import ClearSettings as MF_V3_Tasks_ClearSettings 40from MF.V3.Tasks.CloseProject import CloseProject as MF_V3_Tasks_CloseProject - 41from MF.V3.Tasks.ConnectWifi import ConnectWifi as MF_V3_Tasks_ConnectWifi - 42from MF.V3.Tasks.CopyGroups import CopyGroups as MF_V3_Tasks_CopyGroups - 43from MF.V3.Tasks.DepthMap import DepthMap as MF_V3_Tasks_DepthMap - 44from MF.V3.Tasks.DetectCalibrationCard import DetectCalibrationCard as MF_V3_Tasks_DetectCalibrationCard - 45from MF.V3.Tasks.DownloadProject import DownloadProject as MF_V3_Tasks_DownloadProject - 46from MF.V3.Tasks.Export import Export as MF_V3_Tasks_Export - 47from MF.V3.Tasks.ExportFactoryCalibrationLogs import ExportFactoryCalibrationLogs as MF_V3_Tasks_ExportFactoryCalibrationLogs - 48from MF.V3.Tasks.ExportHeatMap import ExportHeatMap as MF_V3_Tasks_ExportHeatMap - 49from MF.V3.Tasks.ExportLogs import ExportLogs as MF_V3_Tasks_ExportLogs - 50from MF.V3.Tasks.ExportMerge import ExportMerge as MF_V3_Tasks_ExportMerge - 51from MF.V3.Tasks.FactoryReset import FactoryReset as MF_V3_Tasks_FactoryReset - 52from MF.V3.Tasks.FlattenGroup import FlattenGroup as MF_V3_Tasks_FlattenGroup - 53from MF.V3.Tasks.ForgetWifi import ForgetWifi as MF_V3_Tasks_ForgetWifi - 54from MF.V3.Tasks.HasCameras import HasCameras as MF_V3_Tasks_HasCameras - 55from MF.V3.Tasks.HasProjector import HasProjector as MF_V3_Tasks_HasProjector - 56from MF.V3.Tasks.HasTurntable import HasTurntable as MF_V3_Tasks_HasTurntable - 57from MF.V3.Tasks.HeatMap import HeatMap as MF_V3_Tasks_HeatMap - 58from MF.V3.Tasks.Import import Import as MF_V3_Tasks_Import - 59from MF.V3.Tasks.ListExportFormats import ListExportFormats as MF_V3_Tasks_ListExportFormats - 60from MF.V3.Tasks.ListGroups import ListGroups as MF_V3_Tasks_ListGroups - 61from MF.V3.Tasks.ListNetworkInterfaces import ListNetworkInterfaces as MF_V3_Tasks_ListNetworkInterfaces - 62from MF.V3.Tasks.ListProjects import ListProjects as MF_V3_Tasks_ListProjects - 63from MF.V3.Tasks.ListScans import ListScans as MF_V3_Tasks_ListScans - 64from MF.V3.Tasks.ListSettings import ListSettings as MF_V3_Tasks_ListSettings - 65from MF.V3.Tasks.ListWifi import ListWifi as MF_V3_Tasks_ListWifi - 66from MF.V3.Tasks.Merge import Merge as MF_V3_Tasks_Merge - 67from MF.V3.Tasks.MergeData import MergeData as MF_V3_Tasks_MergeData - 68from MF.V3.Tasks.MoveGroup import MoveGroup as MF_V3_Tasks_MoveGroup - 69from MF.V3.Tasks.NewGroup import NewGroup as MF_V3_Tasks_NewGroup - 70from MF.V3.Tasks.NewProject import NewProject as MF_V3_Tasks_NewProject - 71from MF.V3.Tasks.NewScan import NewScan as MF_V3_Tasks_NewScan - 72from MF.V3.Tasks.OpenProject import OpenProject as MF_V3_Tasks_OpenProject - 73from MF.V3.Tasks.PopSettings import PopSettings as MF_V3_Tasks_PopSettings - 74from MF.V3.Tasks.PushSettings import PushSettings as MF_V3_Tasks_PushSettings - 75from MF.V3.Tasks.Reboot import Reboot as MF_V3_Tasks_Reboot - 76from MF.V3.Tasks.RemoveGroups import RemoveGroups as MF_V3_Tasks_RemoveGroups - 77from MF.V3.Tasks.RemoveProjects import RemoveProjects as MF_V3_Tasks_RemoveProjects - 78from MF.V3.Tasks.RestoreFactoryCalibration import RestoreFactoryCalibration as MF_V3_Tasks_RestoreFactoryCalibration - 79from MF.V3.Tasks.RotateTurntable import RotateTurntable as MF_V3_Tasks_RotateTurntable - 80from MF.V3.Tasks.ScanData import ScanData as MF_V3_Tasks_ScanData - 81from MF.V3.Tasks.SetCameras import SetCameras as MF_V3_Tasks_SetCameras - 82from MF.V3.Tasks.SetGroup import SetGroup as MF_V3_Tasks_SetGroup - 83from MF.V3.Tasks.SetProject import SetProject as MF_V3_Tasks_SetProject - 84from MF.V3.Tasks.SetProjector import SetProjector as MF_V3_Tasks_SetProjector - 85from MF.V3.Tasks.Shutdown import Shutdown as MF_V3_Tasks_Shutdown - 86from MF.V3.Tasks.Smooth import Smooth as MF_V3_Tasks_Smooth - 87from MF.V3.Tasks.SplitGroup import SplitGroup as MF_V3_Tasks_SplitGroup - 88from MF.V3.Tasks.StartVideo import StartVideo as MF_V3_Tasks_StartVideo - 89from MF.V3.Tasks.StopVideo import StopVideo as MF_V3_Tasks_StopVideo - 90from MF.V3.Tasks.SystemInfo import SystemInfo as MF_V3_Tasks_SystemInfo - 91from MF.V3.Tasks.TransformGroup import TransformGroup as MF_V3_Tasks_TransformGroup - 92from MF.V3.Tasks.TurntableCalibration import TurntableCalibration as MF_V3_Tasks_TurntableCalibration - 93from MF.V3.Tasks.UpdateSettings import UpdateSettings as MF_V3_Tasks_UpdateSettings - 94from MF.V3.Tasks.UploadProject import UploadProject as MF_V3_Tasks_UploadProject - 95from typing import List - 96 - 97 - 98def list_network_interfaces(self) -> Task: - 99 - 100 """ - 101 List available wifi networks. - 102 """ - 103 list_network_interfaces_request = MF_V3_Tasks_ListNetworkInterfaces.Request( - 104 Index=0, - 105 Type="ListNetworkInterfaces" - 106 ) - 107 list_network_interfaces_response = MF_V3_Tasks_ListNetworkInterfaces.Response( - 108 Index=0, - 109 Type="ListNetworkInterfaces" - 110 ) - 111 task = Task(Index=0, Type="ListNetworkInterfaces", Input=list_network_interfaces_request, Output=list_network_interfaces_response) - 112 self.SendTask(task) - 113 return task - 114 - 115 - 116def list_wifi(self) -> Task: - 117 - 118 """ - 119 List available wifi networks. - 120 """ - 121 list_wifi_request = MF_V3_Tasks_ListWifi.Request( - 122 Index=0, - 123 Type="ListWifi" - 124 ) - 125 list_wifi_response = MF_V3_Tasks_ListWifi.Response( - 126 Index=0, - 127 Type="ListWifi" - 128 ) - 129 task = Task(Index=0, Type="ListWifi", Input=list_wifi_request, Output=list_wifi_response) - 130 self.SendTask(task) - 131 return task - 132 - 133 - 134def connect_wifi(self, ssid: str, password: str) -> Task: - 135 - 136 """ - 137 Connect to a wifi network. - 138 """ - 139 connect_wifi_request = MF_V3_Tasks_ConnectWifi.Request( - 140 Index=0, - 141 Type="ConnectWifi", - 142 Input=MF_V3_Settings_Wifi_Wifi( - 143 ssid=ssid, - 144 password=password, - 145 ) - 146 ) - 147 connect_wifi_response = MF_V3_Tasks_ConnectWifi.Response( - 148 Index=0, - 149 Type="ConnectWifi", - 150 Input=MF_V3_Settings_Wifi_Wifi( - 151 ssid=ssid, - 152 password=password, - 153 ) - 154 ) - 155 task = Task(Index=0, Type="ConnectWifi", Input=connect_wifi_request, Output=connect_wifi_response) - 156 self.SendTask(task) - 157 return task - 158 - 159 - 160def forget_wifi(self) -> Task: - 161 - 162 """ - 163 Forget all wifi connections. - 164 """ - 165 forget_wifi_request = MF_V3_Tasks_ForgetWifi.Request( - 166 Index=0, - 167 Type="ForgetWifi" - 168 ) - 169 forget_wifi_response = MF_V3_Tasks_ForgetWifi.Response( - 170 Index=0, - 171 Type="ForgetWifi" - 172 ) - 173 task = Task(Index=0, Type="ForgetWifi", Input=forget_wifi_request, Output=forget_wifi_response) - 174 self.SendTask(task) - 175 return task - 176 - 177 - 178def list_settings(self) -> Task: - 179 - 180 """ - 181 Get scanner settings. - 182 """ - 183 list_settings_request = MF_V3_Tasks_ListSettings.Request( - 184 Index=0, - 185 Type="ListSettings" - 186 ) - 187 list_settings_response = MF_V3_Tasks_ListSettings.Response( - 188 Index=0, - 189 Type="ListSettings" - 190 ) - 191 task = Task(Index=0, Type="ListSettings", Input=list_settings_request, Output=list_settings_response) - 192 self.SendTask(task) - 193 return task - 194 - 195 - 196def push_settings(self) -> Task: - 197 - 198 """ - 199 Push the current scanner settings to the settings stack. - 200 """ - 201 push_settings_request = MF_V3_Tasks_PushSettings.Request( - 202 Index=0, - 203 Type="PushSettings" - 204 ) - 205 push_settings_response = MF_V3_Tasks_PushSettings.Response( - 206 Index=0, - 207 Type="PushSettings" - 208 ) - 209 task = Task(Index=0, Type="PushSettings", Input=push_settings_request, Output=push_settings_response) - 210 self.SendTask(task) - 211 return task - 212 - 213 - 214def pop_settings(self, Input: bool = None) -> Task: - 215 - 216 """ - 217 Pop and restore scanner settings from the settings stack. - 218 """ - 219 pop_settings_request = MF_V3_Tasks_PopSettings.Request( - 220 Index=0, - 221 Type="PopSettings", - 222 Input=Input - 223 ) - 224 pop_settings_response = MF_V3_Tasks_PopSettings.Response( - 225 Index=0, - 226 Type="PopSettings" - 227 ) - 228 task = Task(Index=0, Type="PopSettings", Input=pop_settings_request, Output=pop_settings_response) - 229 self.SendTask(task) - 230 return task - 231 - 232 - 233def update_settings(self, advanced: MF_V3_Settings_Advanced_Advanced = None, camera: MF_V3_Settings_Camera_Camera = None, capture: MF_V3_Settings_Capture_Capture = None, i18n: MF_V3_Settings_I18n_I18n = None, projector: MF_V3_Settings_Projector_Projector = None, style: MF_V3_Settings_Style_Style = None, turntable: MF_V3_Settings_Turntable_Turntable = None, tutorials: MF_V3_Settings_Tutorials_Tutorials = None, viewer: MF_V3_Settings_Viewer_Viewer = None, software: MF_V3_Settings_Software_Software = None) -> Task: - 234 - 235 """ - 236 Update scanner settings. - 237 """ - 238 update_settings_request = MF_V3_Tasks_UpdateSettings.Request( - 239 Index=0, - 240 Type="UpdateSettings", - 241 Input=MF_V3_Settings_Scanner_Scanner( - 242 advanced=advanced, - 243 camera=camera, - 244 capture=capture, - 245 i18n=i18n, - 246 projector=projector, - 247 style=style, - 248 turntable=turntable, - 249 tutorials=tutorials, - 250 viewer=viewer, - 251 software=software, - 252 ) - 253 ) - 254 update_settings_response = MF_V3_Tasks_UpdateSettings.Response( - 255 Index=0, - 256 Type="UpdateSettings", - 257 Input=MF_V3_Settings_Scanner_Scanner( - 258 advanced=advanced, - 259 camera=camera, - 260 capture=capture, - 261 i18n=i18n, - 262 projector=projector, - 263 style=style, - 264 turntable=turntable, - 265 tutorials=tutorials, - 266 viewer=viewer, - 267 software=software, - 268 ) - 269 ) - 270 task = Task(Index=0, Type="UpdateSettings", Input=update_settings_request, Output=update_settings_response) - 271 self.SendTask(task) - 272 return task - 273 - 274 - 275def list_projects(self) -> Task: - 276 - 277 """ - 278 List all projects. - 279 """ - 280 list_projects_request = MF_V3_Tasks_ListProjects.Request( - 281 Index=0, - 282 Type="ListProjects" - 283 ) - 284 list_projects_response = MF_V3_Tasks_ListProjects.Response( - 285 Index=0, - 286 Type="ListProjects" - 287 ) - 288 task = Task(Index=0, Type="ListProjects", Input=list_projects_request, Output=list_projects_response) - 289 self.SendTask(task) - 290 return task - 291 - 292 - 293def download_project(self, Input: int) -> Task: - 294 - 295 """ - 296 Download a project from the scanner. - 297 """ - 298 download_project_request = MF_V3_Tasks_DownloadProject.Request( - 299 Index=0, - 300 Type="DownloadProject", - 301 Input=Input - 302 ) - 303 download_project_response = MF_V3_Tasks_DownloadProject.Response( - 304 Index=0, - 305 Type="DownloadProject", - 306 Input=Input - 307 ) - 308 task = Task(Index=0, Type="DownloadProject", Input=download_project_request, Output=download_project_response) - 309 self.SendTask(task) - 310 return task - 311 - 312 - 313def upload_project(self, buffer: bytes) -> Task: - 314 - 315 """ - 316 Upload a project to the scanner. - 317 """ - 318 upload_project_request = MF_V3_Tasks_UploadProject.Request( - 319 Index=0, - 320 Type="UploadProject" - 321 ) - 322 upload_project_response = MF_V3_Tasks_UploadProject.Response( - 323 Index=0, - 324 Type="UploadProject" - 325 ) - 326 task = Task(Index=0, Type="UploadProject", Input=upload_project_request, Output=upload_project_response) - 327 self.SendTask(task, buffer) - 328 return task - 329 - 330 - 331def new_project(self, Input: str = None) -> Task: - 332 - 333 """ - 334 Create a new project. - 335 """ - 336 new_project_request = MF_V3_Tasks_NewProject.Request( - 337 Index=0, - 338 Type="NewProject", - 339 Input=Input - 340 ) - 341 new_project_response = MF_V3_Tasks_NewProject.Response( - 342 Index=0, - 343 Type="NewProject" - 344 ) - 345 task = Task(Index=0, Type="NewProject", Input=new_project_request, Output=new_project_response) - 346 self.SendTask(task) - 347 return task - 348 - 349 - 350def open_project(self, Input: int) -> Task: - 351 - 352 """ - 353 Open an existing project. - 354 """ - 355 open_project_request = MF_V3_Tasks_OpenProject.Request( - 356 Index=0, - 357 Type="OpenProject", - 358 Input=Input - 359 ) - 360 open_project_response = MF_V3_Tasks_OpenProject.Response( - 361 Index=0, - 362 Type="OpenProject", - 363 Input=Input - 364 ) - 365 task = Task(Index=0, Type="OpenProject", Input=open_project_request, Output=open_project_response) - 366 self.SendTask(task) - 367 return task - 368 - 369 - 370def clear_settings(self) -> Task: - 371 - 372 """ - 373 Clear scanner settings and restore the default values. - 374 """ - 375 clear_settings_request = MF_V3_Tasks_ClearSettings.Request( - 376 Index=0, - 377 Type="ClearSettings" - 378 ) - 379 clear_settings_response = MF_V3_Tasks_ClearSettings.Response( - 380 Index=0, - 381 Type="ClearSettings" - 382 ) - 383 task = Task(Index=0, Type="ClearSettings", Input=clear_settings_request, Output=clear_settings_response) - 384 self.SendTask(task) - 385 return task - 386 - 387 - 388def close_project(self) -> Task: - 389 - 390 """ - 391 Close the current open project. - 392 """ - 393 close_project_request = MF_V3_Tasks_CloseProject.Request( - 394 Index=0, - 395 Type="CloseProject" - 396 ) - 397 close_project_response = MF_V3_Tasks_CloseProject.Response( - 398 Index=0, - 399 Type="CloseProject" - 400 ) - 401 task = Task(Index=0, Type="CloseProject", Input=close_project_request, Output=close_project_response) - 402 self.SendTask(task) - 403 return task - 404 - 405 - 406def copy_groups(self, sourceIndexes: List[int] = None, targetIndex: int = None, childPosition: int = None, nameSuffix: str = None, enumerate: bool = None) -> Task: - 407 - 408 """ - 409 Copy a set of scan groups in the current open project. - 410 """ - 411 copy_groups_request = MF_V3_Tasks_CopyGroups.Request( - 412 Index=0, - 413 Type="CopyGroups", - 414 Input=MF_V3_Settings_CopyGroups_CopyGroups( - 415 sourceIndexes=sourceIndexes, - 416 targetIndex=targetIndex, - 417 childPosition=childPosition, - 418 nameSuffix=nameSuffix, - 419 enumerate=enumerate, - 420 ) - 421 ) - 422 copy_groups_response = MF_V3_Tasks_CopyGroups.Response( - 423 Index=0, - 424 Type="CopyGroups", - 425 Input=MF_V3_Settings_CopyGroups_CopyGroups( - 426 sourceIndexes=sourceIndexes, - 427 targetIndex=targetIndex, - 428 childPosition=childPosition, - 429 nameSuffix=nameSuffix, - 430 enumerate=enumerate, - 431 ), - 432 Output=None + 41from MF.V3.Tasks.ConnectScanner import ConnectScanner as MF_V3_Tasks_ConnectScanner + 42from MF.V3.Tasks.ConnectWifi import ConnectWifi as MF_V3_Tasks_ConnectWifi + 43from MF.V3.Tasks.CopyGroups import CopyGroups as MF_V3_Tasks_CopyGroups + 44from MF.V3.Tasks.DepthMap import DepthMap as MF_V3_Tasks_DepthMap + 45from MF.V3.Tasks.DetectCalibrationCard import DetectCalibrationCard as MF_V3_Tasks_DetectCalibrationCard + 46from MF.V3.Tasks.DisconnectScanner import DisconnectScanner as MF_V3_Tasks_DisconnectScanner + 47from MF.V3.Tasks.DiscoverScanners import DiscoverScanners as MF_V3_Tasks_DiscoverScanners + 48from MF.V3.Tasks.DownloadProject import DownloadProject as MF_V3_Tasks_DownloadProject + 49from MF.V3.Tasks.DownloadScannerProject import DownloadScannerProject as MF_V3_Tasks_DownloadScannerProject + 50from MF.V3.Tasks.Export import Export as MF_V3_Tasks_Export + 51from MF.V3.Tasks.ExportFactoryCalibrationLogs import ExportFactoryCalibrationLogs as MF_V3_Tasks_ExportFactoryCalibrationLogs + 52from MF.V3.Tasks.ExportHeatMap import ExportHeatMap as MF_V3_Tasks_ExportHeatMap + 53from MF.V3.Tasks.ExportLogs import ExportLogs as MF_V3_Tasks_ExportLogs + 54from MF.V3.Tasks.ExportMerge import ExportMerge as MF_V3_Tasks_ExportMerge + 55from MF.V3.Tasks.FactoryReset import FactoryReset as MF_V3_Tasks_FactoryReset + 56from MF.V3.Tasks.FlattenGroup import FlattenGroup as MF_V3_Tasks_FlattenGroup + 57from MF.V3.Tasks.ForgetWifi import ForgetWifi as MF_V3_Tasks_ForgetWifi + 58from MF.V3.Tasks.GetProtocolInfo import GetProtocolInfo as MF_V3_Tasks_GetProtocolInfo + 59from MF.V3.Tasks.GetScannerStatus import GetScannerStatus as MF_V3_Tasks_GetScannerStatus + 60from MF.V3.Tasks.HasCameras import HasCameras as MF_V3_Tasks_HasCameras + 61from MF.V3.Tasks.HasProjector import HasProjector as MF_V3_Tasks_HasProjector + 62from MF.V3.Tasks.HasTurntable import HasTurntable as MF_V3_Tasks_HasTurntable + 63from MF.V3.Tasks.HeatMap import HeatMap as MF_V3_Tasks_HeatMap + 64from MF.V3.Tasks.Import import Import as MF_V3_Tasks_Import + 65from MF.V3.Tasks.ListExportFormats import ListExportFormats as MF_V3_Tasks_ListExportFormats + 66from MF.V3.Tasks.ListGroups import ListGroups as MF_V3_Tasks_ListGroups + 67from MF.V3.Tasks.ListNetworkInterfaces import ListNetworkInterfaces as MF_V3_Tasks_ListNetworkInterfaces + 68from MF.V3.Tasks.ListProjects import ListProjects as MF_V3_Tasks_ListProjects + 69from MF.V3.Tasks.ListScannerProjects import ListScannerProjects as MF_V3_Tasks_ListScannerProjects + 70from MF.V3.Tasks.ListScans import ListScans as MF_V3_Tasks_ListScans + 71from MF.V3.Tasks.ListSettings import ListSettings as MF_V3_Tasks_ListSettings + 72from MF.V3.Tasks.ListWifi import ListWifi as MF_V3_Tasks_ListWifi + 73from MF.V3.Tasks.Merge import Merge as MF_V3_Tasks_Merge + 74from MF.V3.Tasks.MergeData import MergeData as MF_V3_Tasks_MergeData + 75from MF.V3.Tasks.MoveGroup import MoveGroup as MF_V3_Tasks_MoveGroup + 76from MF.V3.Tasks.NewGroup import NewGroup as MF_V3_Tasks_NewGroup + 77from MF.V3.Tasks.NewProject import NewProject as MF_V3_Tasks_NewProject + 78from MF.V3.Tasks.NewScan import NewScan as MF_V3_Tasks_NewScan + 79from MF.V3.Tasks.OpenProject import OpenProject as MF_V3_Tasks_OpenProject + 80from MF.V3.Tasks.PopSettings import PopSettings as MF_V3_Tasks_PopSettings + 81from MF.V3.Tasks.PullProject import PullProject as MF_V3_Tasks_PullProject + 82from MF.V3.Tasks.PushProject import PushProject as MF_V3_Tasks_PushProject + 83from MF.V3.Tasks.PushSettings import PushSettings as MF_V3_Tasks_PushSettings + 84from MF.V3.Tasks.Reboot import Reboot as MF_V3_Tasks_Reboot + 85from MF.V3.Tasks.RemoveGroups import RemoveGroups as MF_V3_Tasks_RemoveGroups + 86from MF.V3.Tasks.RemoveProjects import RemoveProjects as MF_V3_Tasks_RemoveProjects + 87from MF.V3.Tasks.RemoveScannerProjects import RemoveScannerProjects as MF_V3_Tasks_RemoveScannerProjects + 88from MF.V3.Tasks.RestoreFactoryCalibration import RestoreFactoryCalibration as MF_V3_Tasks_RestoreFactoryCalibration + 89from MF.V3.Tasks.RotateTurntable import RotateTurntable as MF_V3_Tasks_RotateTurntable + 90from MF.V3.Tasks.ScanData import ScanData as MF_V3_Tasks_ScanData + 91from MF.V3.Tasks.SetCameras import SetCameras as MF_V3_Tasks_SetCameras + 92from MF.V3.Tasks.SetGroup import SetGroup as MF_V3_Tasks_SetGroup + 93from MF.V3.Tasks.SetProcessingDevices import SetProcessingDevices as MF_V3_Tasks_SetProcessingDevices + 94from MF.V3.Tasks.SetProject import SetProject as MF_V3_Tasks_SetProject + 95from MF.V3.Tasks.SetProjector import SetProjector as MF_V3_Tasks_SetProjector + 96from MF.V3.Tasks.Shutdown import Shutdown as MF_V3_Tasks_Shutdown + 97from MF.V3.Tasks.Smooth import Smooth as MF_V3_Tasks_Smooth + 98from MF.V3.Tasks.SplitGroup import SplitGroup as MF_V3_Tasks_SplitGroup + 99from MF.V3.Tasks.StartVideo import StartVideo as MF_V3_Tasks_StartVideo + 100from MF.V3.Tasks.StopVideo import StopVideo as MF_V3_Tasks_StopVideo + 101from MF.V3.Tasks.StorageInfo import StorageInfo as MF_V3_Tasks_StorageInfo + 102from MF.V3.Tasks.SystemInfo import SystemInfo as MF_V3_Tasks_SystemInfo + 103from MF.V3.Tasks.TransformGroup import TransformGroup as MF_V3_Tasks_TransformGroup + 104from MF.V3.Tasks.TurntableCalibration import TurntableCalibration as MF_V3_Tasks_TurntableCalibration + 105from MF.V3.Tasks.UpdateSettings import UpdateSettings as MF_V3_Tasks_UpdateSettings + 106from MF.V3.Tasks.UploadProject import UploadProject as MF_V3_Tasks_UploadProject + 107from typing import List + 108 + 109 + 110def list_network_interfaces(self) -> Task: + 111 + 112 """ + 113 List available wifi networks. + 114 """ + 115 list_network_interfaces_request = MF_V3_Tasks_ListNetworkInterfaces.Request( + 116 Index=0, + 117 Type="ListNetworkInterfaces" + 118 ) + 119 list_network_interfaces_response = MF_V3_Tasks_ListNetworkInterfaces.Response( + 120 Index=0, + 121 Type="ListNetworkInterfaces" + 122 ) + 123 task = Task(Index=0, Type="ListNetworkInterfaces", Input=list_network_interfaces_request, Output=list_network_interfaces_response) + 124 self.SendTask(task) + 125 return task + 126 + 127 + 128def list_wifi(self) -> Task: + 129 + 130 """ + 131 List available wifi networks. + 132 """ + 133 list_wifi_request = MF_V3_Tasks_ListWifi.Request( + 134 Index=0, + 135 Type="ListWifi" + 136 ) + 137 list_wifi_response = MF_V3_Tasks_ListWifi.Response( + 138 Index=0, + 139 Type="ListWifi" + 140 ) + 141 task = Task(Index=0, Type="ListWifi", Input=list_wifi_request, Output=list_wifi_response) + 142 self.SendTask(task) + 143 return task + 144 + 145 + 146def connect_wifi(self, ssid: str, password: str) -> Task: + 147 + 148 """ + 149 Connect to a wifi network. + 150 """ + 151 connect_wifi_request = MF_V3_Tasks_ConnectWifi.Request( + 152 Index=0, + 153 Type="ConnectWifi", + 154 Input=MF_V3_Settings_Wifi_Wifi( + 155 ssid=ssid, + 156 password=password, + 157 ) + 158 ) + 159 connect_wifi_response = MF_V3_Tasks_ConnectWifi.Response( + 160 Index=0, + 161 Type="ConnectWifi", + 162 Input=MF_V3_Settings_Wifi_Wifi( + 163 ssid=ssid, + 164 password=password, + 165 ) + 166 ) + 167 task = Task(Index=0, Type="ConnectWifi", Input=connect_wifi_request, Output=connect_wifi_response) + 168 self.SendTask(task) + 169 return task + 170 + 171 + 172def forget_wifi(self) -> Task: + 173 + 174 """ + 175 Forget all wifi connections. + 176 """ + 177 forget_wifi_request = MF_V3_Tasks_ForgetWifi.Request( + 178 Index=0, + 179 Type="ForgetWifi" + 180 ) + 181 forget_wifi_response = MF_V3_Tasks_ForgetWifi.Response( + 182 Index=0, + 183 Type="ForgetWifi" + 184 ) + 185 task = Task(Index=0, Type="ForgetWifi", Input=forget_wifi_request, Output=forget_wifi_response) + 186 self.SendTask(task) + 187 return task + 188 + 189 + 190def list_settings(self) -> Task: + 191 + 192 """ + 193 Get scanner settings. + 194 """ + 195 list_settings_request = MF_V3_Tasks_ListSettings.Request( + 196 Index=0, + 197 Type="ListSettings" + 198 ) + 199 list_settings_response = MF_V3_Tasks_ListSettings.Response( + 200 Index=0, + 201 Type="ListSettings" + 202 ) + 203 task = Task(Index=0, Type="ListSettings", Input=list_settings_request, Output=list_settings_response) + 204 self.SendTask(task) + 205 return task + 206 + 207 + 208def push_settings(self) -> Task: + 209 + 210 """ + 211 Push the current scanner settings to the settings stack. + 212 """ + 213 push_settings_request = MF_V3_Tasks_PushSettings.Request( + 214 Index=0, + 215 Type="PushSettings" + 216 ) + 217 push_settings_response = MF_V3_Tasks_PushSettings.Response( + 218 Index=0, + 219 Type="PushSettings" + 220 ) + 221 task = Task(Index=0, Type="PushSettings", Input=push_settings_request, Output=push_settings_response) + 222 self.SendTask(task) + 223 return task + 224 + 225 + 226def pop_settings(self, Input: bool = None) -> Task: + 227 + 228 """ + 229 Pop and restore scanner settings from the settings stack. + 230 """ + 231 pop_settings_request = MF_V3_Tasks_PopSettings.Request( + 232 Index=0, + 233 Type="PopSettings", + 234 Input=Input + 235 ) + 236 pop_settings_response = MF_V3_Tasks_PopSettings.Response( + 237 Index=0, + 238 Type="PopSettings" + 239 ) + 240 task = Task(Index=0, Type="PopSettings", Input=pop_settings_request, Output=pop_settings_response) + 241 self.SendTask(task) + 242 return task + 243 + 244 + 245def update_settings(self, advanced: MF_V3_Settings_Advanced_Advanced = None, camera: MF_V3_Settings_Camera_Camera = None, capture: MF_V3_Settings_Capture_Capture = None, i18n: MF_V3_Settings_I18n_I18n = None, projector: MF_V3_Settings_Projector_Projector = None, style: MF_V3_Settings_Style_Style = None, turntable: MF_V3_Settings_Turntable_Turntable = None, tutorials: MF_V3_Settings_Tutorials_Tutorials = None, viewer: MF_V3_Settings_Viewer_Viewer = None, software: MF_V3_Settings_Software_Software = None) -> Task: + 246 + 247 """ + 248 Update scanner settings. + 249 """ + 250 update_settings_request = MF_V3_Tasks_UpdateSettings.Request( + 251 Index=0, + 252 Type="UpdateSettings", + 253 Input=MF_V3_Settings_Scanner_Scanner( + 254 advanced=advanced, + 255 camera=camera, + 256 capture=capture, + 257 i18n=i18n, + 258 projector=projector, + 259 style=style, + 260 turntable=turntable, + 261 tutorials=tutorials, + 262 viewer=viewer, + 263 software=software, + 264 ) + 265 ) + 266 update_settings_response = MF_V3_Tasks_UpdateSettings.Response( + 267 Index=0, + 268 Type="UpdateSettings", + 269 Input=MF_V3_Settings_Scanner_Scanner( + 270 advanced=advanced, + 271 camera=camera, + 272 capture=capture, + 273 i18n=i18n, + 274 projector=projector, + 275 style=style, + 276 turntable=turntable, + 277 tutorials=tutorials, + 278 viewer=viewer, + 279 software=software, + 280 ) + 281 ) + 282 task = Task(Index=0, Type="UpdateSettings", Input=update_settings_request, Output=update_settings_response) + 283 self.SendTask(task) + 284 return task + 285 + 286 + 287def list_projects(self) -> Task: + 288 + 289 """ + 290 List all projects. + 291 """ + 292 list_projects_request = MF_V3_Tasks_ListProjects.Request( + 293 Index=0, + 294 Type="ListProjects" + 295 ) + 296 list_projects_response = MF_V3_Tasks_ListProjects.Response( + 297 Index=0, + 298 Type="ListProjects" + 299 ) + 300 task = Task(Index=0, Type="ListProjects", Input=list_projects_request, Output=list_projects_response) + 301 self.SendTask(task) + 302 return task + 303 + 304 + 305def download_project(self, Input: int) -> Task: + 306 + 307 """ + 308 Download a project from the scanner. + 309 """ + 310 download_project_request = MF_V3_Tasks_DownloadProject.Request( + 311 Index=0, + 312 Type="DownloadProject", + 313 Input=Input + 314 ) + 315 download_project_response = MF_V3_Tasks_DownloadProject.Response( + 316 Index=0, + 317 Type="DownloadProject", + 318 Input=Input + 319 ) + 320 task = Task(Index=0, Type="DownloadProject", Input=download_project_request, Output=download_project_response) + 321 self.SendTask(task) + 322 return task + 323 + 324 + 325def upload_project(self, buffer: bytes) -> Task: + 326 + 327 """ + 328 Upload a project to the scanner. + 329 """ + 330 upload_project_request = MF_V3_Tasks_UploadProject.Request( + 331 Index=0, + 332 Type="UploadProject" + 333 ) + 334 upload_project_response = MF_V3_Tasks_UploadProject.Response( + 335 Index=0, + 336 Type="UploadProject" + 337 ) + 338 task = Task(Index=0, Type="UploadProject", Input=upload_project_request, Output=upload_project_response) + 339 self.SendTask(task, buffer) + 340 return task + 341 + 342 + 343def new_project(self, Input: str = None) -> Task: + 344 + 345 """ + 346 Create a new project. + 347 """ + 348 new_project_request = MF_V3_Tasks_NewProject.Request( + 349 Index=0, + 350 Type="NewProject", + 351 Input=Input + 352 ) + 353 new_project_response = MF_V3_Tasks_NewProject.Response( + 354 Index=0, + 355 Type="NewProject" + 356 ) + 357 task = Task(Index=0, Type="NewProject", Input=new_project_request, Output=new_project_response) + 358 self.SendTask(task) + 359 return task + 360 + 361 + 362def open_project(self, Input: int) -> Task: + 363 + 364 """ + 365 Open an existing project. + 366 """ + 367 open_project_request = MF_V3_Tasks_OpenProject.Request( + 368 Index=0, + 369 Type="OpenProject", + 370 Input=Input + 371 ) + 372 open_project_response = MF_V3_Tasks_OpenProject.Response( + 373 Index=0, + 374 Type="OpenProject", + 375 Input=Input + 376 ) + 377 task = Task(Index=0, Type="OpenProject", Input=open_project_request, Output=open_project_response) + 378 self.SendTask(task) + 379 return task + 380 + 381 + 382def clear_settings(self) -> Task: + 383 + 384 """ + 385 Clear scanner settings and restore the default values. + 386 """ + 387 clear_settings_request = MF_V3_Tasks_ClearSettings.Request( + 388 Index=0, + 389 Type="ClearSettings" + 390 ) + 391 clear_settings_response = MF_V3_Tasks_ClearSettings.Response( + 392 Index=0, + 393 Type="ClearSettings" + 394 ) + 395 task = Task(Index=0, Type="ClearSettings", Input=clear_settings_request, Output=clear_settings_response) + 396 self.SendTask(task) + 397 return task + 398 + 399 + 400def close_project(self) -> Task: + 401 + 402 """ + 403 Close the current open project. + 404 """ + 405 close_project_request = MF_V3_Tasks_CloseProject.Request( + 406 Index=0, + 407 Type="CloseProject" + 408 ) + 409 close_project_response = MF_V3_Tasks_CloseProject.Response( + 410 Index=0, + 411 Type="CloseProject" + 412 ) + 413 task = Task(Index=0, Type="CloseProject", Input=close_project_request, Output=close_project_response) + 414 self.SendTask(task) + 415 return task + 416 + 417 + 418def copy_groups(self, sourceIndexes: List[int] = None, targetIndex: int = None, childPosition: int = None, nameSuffix: str = None, enumerate: bool = None) -> Task: + 419 + 420 """ + 421 Copy a set of scan groups in the current open project. + 422 """ + 423 copy_groups_request = MF_V3_Tasks_CopyGroups.Request( + 424 Index=0, + 425 Type="CopyGroups", + 426 Input=MF_V3_Settings_CopyGroups_CopyGroups( + 427 sourceIndexes=sourceIndexes, + 428 targetIndex=targetIndex, + 429 childPosition=childPosition, + 430 nameSuffix=nameSuffix, + 431 enumerate=enumerate, + 432 ) 433 ) - 434 task = Task(Index=0, Type="CopyGroups", Input=copy_groups_request, Output=copy_groups_response) - 435 self.SendTask(task) - 436 return task - 437 - 438 - 439def remove_projects(self, Input: List[int] = None) -> Task: - 440 - 441 """ - 442 Remove selected projects. - 443 """ - 444 remove_projects_request = MF_V3_Tasks_RemoveProjects.Request( - 445 Index=0, - 446 Type="RemoveProjects", - 447 Input=Input - 448 ) - 449 remove_projects_response = MF_V3_Tasks_RemoveProjects.Response( - 450 Index=0, - 451 Type="RemoveProjects" - 452 ) - 453 task = Task(Index=0, Type="RemoveProjects", Input=remove_projects_request, Output=remove_projects_response) - 454 self.SendTask(task) - 455 return task - 456 - 457 - 458def list_groups(self) -> Task: - 459 - 460 """ - 461 List the scan groups in the current open project. - 462 """ - 463 list_groups_request = MF_V3_Tasks_ListGroups.Request( - 464 Index=0, - 465 Type="ListGroups" - 466 ) - 467 list_groups_response = MF_V3_Tasks_ListGroups.Response( - 468 Index=0, - 469 Type="ListGroups", - 470 Output=None - 471 ) - 472 task = Task(Index=0, Type="ListGroups", Input=list_groups_request, Output=list_groups_response) - 473 self.SendTask(task) - 474 return task - 475 - 476 - 477def list_scans(self) -> Task: - 478 - 479 """ - 480 List the scans in the current open project. - 481 """ - 482 list_scans_request = MF_V3_Tasks_ListScans.Request( - 483 Index=0, - 484 Type="ListScans" - 485 ) - 486 list_scans_response = MF_V3_Tasks_ListScans.Response( - 487 Index=0, - 488 Type="ListScans" - 489 ) - 490 task = Task(Index=0, Type="ListScans", Input=list_scans_request, Output=list_scans_response) - 491 self.SendTask(task) - 492 return task - 493 - 494 - 495def scan_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task: - 496 - 497 """ - 498 Download the raw scan data for a scan in the current open project. - 499 """ - 500 scan_data_request = MF_V3_Tasks_ScanData.Request( - 501 Index=0, - 502 Type="ScanData", - 503 Input=MF_V3_Settings_ScanData_ScanData( - 504 index=index, - 505 mergeStep=mergeStep, - 506 buffers=buffers, - 507 metadata=metadata, - 508 ) - 509 ) - 510 scan_data_response = MF_V3_Tasks_ScanData.Response( - 511 Index=0, - 512 Type="ScanData", - 513 Input=MF_V3_Settings_ScanData_ScanData( - 514 index=index, - 515 mergeStep=mergeStep, - 516 buffers=buffers, - 517 metadata=metadata, - 518 ), - 519 Output=None - 520 ) - 521 task = Task(Index=0, Type="ScanData", Input=scan_data_request, Output=scan_data_response) - 522 self.SendTask(task) - 523 return task - 524 - 525 - 526def set_project(self, index: int = None, name: str = None) -> Task: - 527 - 528 """ - 529 Apply settings to the current open project. - 530 """ - 531 set_project_request = MF_V3_Tasks_SetProject.Request( - 532 Index=0, - 533 Type="SetProject", - 534 Input=MF_V3_Settings_Project_Project( - 535 index=index, - 536 name=name, - 537 ) - 538 ) - 539 set_project_response = MF_V3_Tasks_SetProject.Response( - 540 Index=0, - 541 Type="SetProject" - 542 ) - 543 task = Task(Index=0, Type="SetProject", Input=set_project_request, Output=set_project_response) - 544 self.SendTask(task) - 545 return task - 546 - 547 - 548def set_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task: - 549 - 550 """ - 551 Set scan group properties. - 552 """ - 553 set_group_request = MF_V3_Tasks_SetGroup.Request( - 554 Index=0, - 555 Type="SetGroup", - 556 Input=MF_V3_Settings_Group_Group( - 557 index=index, - 558 name=name, - 559 color=color, - 560 visible=visible, - 561 collapsed=collapsed, - 562 rotation=rotation, - 563 translation=translation, - 564 ) - 565 ) - 566 set_group_response = MF_V3_Tasks_SetGroup.Response( - 567 Index=0, - 568 Type="SetGroup", - 569 Input=MF_V3_Settings_Group_Group( - 570 index=index, - 571 name=name, - 572 color=color, - 573 visible=visible, - 574 collapsed=collapsed, - 575 rotation=rotation, - 576 translation=translation, - 577 ), - 578 Output=None - 579 ) - 580 task = Task(Index=0, Type="SetGroup", Input=set_group_request, Output=set_group_response) - 581 self.SendTask(task) - 582 return task - 583 - 584 - 585def new_group(self, parentIndex: int = None, baseName: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task: - 586 - 587 """ - 588 Create a new scan group. - 589 """ - 590 new_group_request = MF_V3_Tasks_NewGroup.Request( - 591 Index=0, - 592 Type="NewGroup", - 593 Input=MF_V3_Settings_NewGroup_NewGroup( - 594 parentIndex=parentIndex, - 595 baseName=baseName, - 596 color=color, - 597 visible=visible, - 598 collapsed=collapsed, - 599 rotation=rotation, - 600 translation=translation, - 601 ) - 602 ) - 603 new_group_response = MF_V3_Tasks_NewGroup.Response( - 604 Index=0, - 605 Type="NewGroup", - 606 Output=None - 607 ) - 608 task = Task(Index=0, Type="NewGroup", Input=new_group_request, Output=new_group_response) - 609 self.SendTask(task) - 610 return task - 611 - 612 - 613def move_group(self, Input: List[int] = None) -> Task: - 614 - 615 """ - 616 Move a scan group. - 617 """ - 618 move_group_request = MF_V3_Tasks_MoveGroup.Request( - 619 Index=0, - 620 Type="MoveGroup", - 621 Input=Input - 622 ) - 623 move_group_response = MF_V3_Tasks_MoveGroup.Response( - 624 Index=0, - 625 Type="MoveGroup", - 626 Output=None - 627 ) - 628 task = Task(Index=0, Type="MoveGroup", Input=move_group_request, Output=move_group_response) - 629 self.SendTask(task) - 630 return task - 631 - 632 - 633def factory_reset(self) -> Task: - 634 - 635 """ - 636 Reset the scanner to factory settings. - 637 """ - 638 factory_reset_request = MF_V3_Tasks_FactoryReset.Request( - 639 Index=0, - 640 Type="FactoryReset" - 641 ) - 642 factory_reset_response = MF_V3_Tasks_FactoryReset.Response( - 643 Index=0, - 644 Type="FactoryReset" - 645 ) - 646 task = Task(Index=0, Type="FactoryReset", Input=factory_reset_request, Output=factory_reset_response) - 647 self.SendTask(task) - 648 return task - 649 - 650 - 651def flatten_group(self, Input: int) -> Task: - 652 - 653 """ - 654 Flatten a scan group such that it only consists of single scans. - 655 """ - 656 flatten_group_request = MF_V3_Tasks_FlattenGroup.Request( - 657 Index=0, - 658 Type="FlattenGroup", - 659 Input=Input - 660 ) - 661 flatten_group_response = MF_V3_Tasks_FlattenGroup.Response( - 662 Index=0, - 663 Type="FlattenGroup", - 664 Input=Input, - 665 Output=None - 666 ) - 667 task = Task(Index=0, Type="FlattenGroup", Input=flatten_group_request, Output=flatten_group_response) - 668 self.SendTask(task) - 669 return task - 670 - 671 - 672def split_group(self, Input: int) -> Task: - 673 - 674 """ - 675 Split a scan group (ie. move its subgroups to its parent group). - 676 """ - 677 split_group_request = MF_V3_Tasks_SplitGroup.Request( - 678 Index=0, - 679 Type="SplitGroup", - 680 Input=Input - 681 ) - 682 split_group_response = MF_V3_Tasks_SplitGroup.Response( - 683 Index=0, - 684 Type="SplitGroup", - 685 Input=Input, - 686 Output=None - 687 ) - 688 task = Task(Index=0, Type="SplitGroup", Input=split_group_request, Output=split_group_response) - 689 self.SendTask(task) - 690 return task - 691 - 692 - 693def transform_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task: - 694 - 695 """ - 696 Apply a rigid transformation to a group. - 697 """ - 698 transform_group_request = MF_V3_Tasks_TransformGroup.Request( - 699 Index=0, - 700 Type="TransformGroup", - 701 Input=MF_V3_Settings_Group_Group( - 702 index=index, - 703 name=name, - 704 color=color, - 705 visible=visible, - 706 collapsed=collapsed, - 707 rotation=rotation, - 708 translation=translation, - 709 ) - 710 ) - 711 transform_group_response = MF_V3_Tasks_TransformGroup.Response( - 712 Index=0, - 713 Type="TransformGroup", - 714 Input=MF_V3_Settings_Group_Group( - 715 index=index, - 716 name=name, - 717 color=color, - 718 visible=visible, - 719 collapsed=collapsed, - 720 rotation=rotation, - 721 translation=translation, - 722 ), - 723 Output=None - 724 ) - 725 task = Task(Index=0, Type="TransformGroup", Input=transform_group_request, Output=transform_group_response) - 726 self.SendTask(task) - 727 return task - 728 - 729 - 730def remove_groups(self, Input: List[int] = None) -> Task: - 731 - 732 """ - 733 Remove selected scan groups. - 734 """ - 735 remove_groups_request = MF_V3_Tasks_RemoveGroups.Request( - 736 Index=0, - 737 Type="RemoveGroups", - 738 Input=Input - 739 ) - 740 remove_groups_response = MF_V3_Tasks_RemoveGroups.Response( - 741 Index=0, - 742 Type="RemoveGroups", - 743 Output=None - 744 ) - 745 task = Task(Index=0, Type="RemoveGroups", Input=remove_groups_request, Output=remove_groups_response) - 746 self.SendTask(task) - 747 return task - 748 - 749 - 750def bounding_box(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool) -> Task: - 751 - 752 """ - 753 Get the bounding box of a set of scan groups. - 754 """ - 755 bounding_box_request = MF_V3_Tasks_BoundingBox.Request( - 756 Index=0, - 757 Type="BoundingBox", - 758 Input=MF_V3_Settings_BoundingBox_BoundingBox( - 759 selection=selection, - 760 axisAligned=axisAligned, - 761 ) - 762 ) - 763 bounding_box_response = MF_V3_Tasks_BoundingBox.Response( - 764 Index=0, - 765 Type="BoundingBox", - 766 Input=MF_V3_Settings_BoundingBox_BoundingBox( - 767 selection=selection, - 768 axisAligned=axisAligned, - 769 ), - 770 Output=None - 771 ) - 772 task = Task(Index=0, Type="BoundingBox", Input=bounding_box_request, Output=bounding_box_response) - 773 self.SendTask(task) - 774 return task - 775 - 776 - 777def align(self, source: int, target: int, rough: MF_V3_Settings_Align_Align.Rough = None, fine: MF_V3_Settings_Align_Align.Fine = None) -> Task: - 778 - 779 """ - 780 Align two scan groups. - 781 """ - 782 align_request = MF_V3_Tasks_Align.Request( - 783 Index=0, - 784 Type="Align", - 785 Input=MF_V3_Settings_Align_Align( - 786 source=source, - 787 target=target, - 788 rough=rough, - 789 fine=fine, - 790 ) - 791 ) - 792 align_response = MF_V3_Tasks_Align.Response( - 793 Index=0, - 794 Type="Align", - 795 Input=MF_V3_Settings_Align_Align( - 796 source=source, - 797 target=target, - 798 rough=rough, - 799 fine=fine, - 800 ), - 801 Output=None - 802 ) - 803 task = Task(Index=0, Type="Align", Input=align_request, Output=align_response) - 804 self.SendTask(task) - 805 return task - 806 - 807 - 808def smooth(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, taubin: MF_V3_Settings_Smooth_Smooth.Taubin = None) -> Task: - 809 - 810 """ - 811 Smooth a set of scans. - 812 """ - 813 smooth_request = MF_V3_Tasks_Smooth.Request( - 814 Index=0, - 815 Type="Smooth", - 816 Input=MF_V3_Settings_Smooth_Smooth( - 817 selection=selection, - 818 taubin=taubin, - 819 ) - 820 ) - 821 smooth_response = MF_V3_Tasks_Smooth.Response( - 822 Index=0, - 823 Type="Smooth", - 824 Input=MF_V3_Settings_Smooth_Smooth( - 825 selection=selection, - 826 taubin=taubin, - 827 ) - 828 ) - 829 task = Task(Index=0, Type="Smooth", Input=smooth_request, Output=smooth_response) - 830 self.SendTask(task) - 831 return task - 832 - 833 - 834def heat_map(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None) -> Task: - 835 - 836 """ - 837 Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map. - 838 """ - 839 heat_map_request = MF_V3_Tasks_HeatMap.Request( - 840 Index=0, - 841 Type="HeatMap", - 842 Input=MF_V3_Settings_HeatMap_HeatMap( - 843 sources=sources, - 844 targets=targets, - 845 outlierDistance=outlierDistance, - 846 ) - 847 ) - 848 heat_map_response = MF_V3_Tasks_HeatMap.Response( - 849 Index=0, - 850 Type="HeatMap", - 851 Input=MF_V3_Settings_HeatMap_HeatMap( - 852 sources=sources, - 853 targets=targets, - 854 outlierDistance=outlierDistance, - 855 ), - 856 Output=None - 857 ) - 858 task = Task(Index=0, Type="HeatMap", Input=heat_map_request, Output=heat_map_response) - 859 self.SendTask(task) - 860 return task - 861 - 862 - 863def merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, remesh: MF_V3_Settings_Merge_Merge.Remesh = None, simplify: MF_V3_Settings_Merge_Merge.Simplify = None, texturize: bool = None) -> Task: - 864 - 865 """ - 866 Merge two or more scan groups. - 867 """ - 868 merge_request = MF_V3_Tasks_Merge.Request( - 869 Index=0, - 870 Type="Merge", - 871 Input=MF_V3_Settings_Merge_Merge( - 872 selection=selection, - 873 remesh=remesh, - 874 simplify=simplify, - 875 texturize=texturize, - 876 ) - 877 ) - 878 merge_response = MF_V3_Tasks_Merge.Response( - 879 Index=0, - 880 Type="Merge", - 881 Input=MF_V3_Settings_Merge_Merge( - 882 selection=selection, - 883 remesh=remesh, - 884 simplify=simplify, - 885 texturize=texturize, - 886 ), - 887 Output=None - 888 ) - 889 task = Task(Index=0, Type="Merge", Input=merge_request, Output=merge_response) - 890 self.SendTask(task) - 891 return task - 892 - 893 - 894def merge_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task: - 895 - 896 """ - 897 Download the raw scan data for the current merge process. - 898 """ - 899 merge_data_request = MF_V3_Tasks_MergeData.Request( - 900 Index=0, - 901 Type="MergeData", - 902 Input=MF_V3_Settings_ScanData_ScanData( - 903 index=index, - 904 mergeStep=mergeStep, - 905 buffers=buffers, - 906 metadata=metadata, - 907 ) - 908 ) - 909 merge_data_response = MF_V3_Tasks_MergeData.Response( - 910 Index=0, - 911 Type="MergeData", - 912 Input=MF_V3_Settings_ScanData_ScanData( - 913 index=index, - 914 mergeStep=mergeStep, - 915 buffers=buffers, - 916 metadata=metadata, - 917 ), - 918 Output=None - 919 ) - 920 task = Task(Index=0, Type="MergeData", Input=merge_data_request, Output=merge_data_response) - 921 self.SendTask(task) - 922 return task - 923 - 924 - 925def add_merge_to_project(self) -> Task: - 926 - 927 """ - 928 Add a merged scan to the current project. - 929 """ - 930 add_merge_to_project_request = MF_V3_Tasks_AddMergeToProject.Request( - 931 Index=0, - 932 Type="AddMergeToProject" - 933 ) - 934 add_merge_to_project_response = MF_V3_Tasks_AddMergeToProject.Response( - 935 Index=0, - 936 Type="AddMergeToProject", - 937 Output=None - 938 ) - 939 task = Task(Index=0, Type="AddMergeToProject", Input=add_merge_to_project_request, Output=add_merge_to_project_response) - 940 self.SendTask(task) - 941 return task - 942 - 943 - 944def import_file(self, name: str = None, scale: float = None, unit: MF_V3_Settings_Import_Import.Unit = None, center: bool = None, groupIndex: int = None) -> Task: - 945 - 946 """ - 947 Import a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file. - 948 """ - 949 import_file_request = MF_V3_Tasks_Import.Request( - 950 Index=0, - 951 Type="Import", - 952 Input=MF_V3_Settings_Import_Import( - 953 name=name, - 954 scale=scale, - 955 unit=unit, - 956 center=center, - 957 groupIndex=groupIndex, - 958 ) - 959 ) - 960 import_file_response = MF_V3_Tasks_Import.Response( - 961 Index=0, - 962 Type="Import" - 963 ) - 964 task = Task(Index=0, Type="Import", Input=import_file_request, Output=import_file_response) - 965 self.SendTask(task) - 966 return task - 967 - 968 - 969def list_export_formats(self) -> Task: - 970 - 971 """ - 972 List all export formats. - 973 """ - 974 list_export_formats_request = MF_V3_Tasks_ListExportFormats.Request( - 975 Index=0, - 976 Type="ListExportFormats" - 977 ) - 978 list_export_formats_response = MF_V3_Tasks_ListExportFormats.Response( - 979 Index=0, - 980 Type="ListExportFormats" - 981 ) - 982 task = Task(Index=0, Type="ListExportFormats", Input=list_export_formats_request, Output=list_export_formats_response) - 983 self.SendTask(task) - 984 return task - 985 - 986 - 987def export(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task: - 988 - 989 """ - 990 Export a group of scans. - 991 """ - 992 export_request = MF_V3_Tasks_Export.Request( - 993 Index=0, - 994 Type="Export", - 995 Input=MF_V3_Settings_Export_Export( - 996 selection=selection, - 997 texture=texture, - 998 merge=merge, - 999 format=format, -1000 scale=scale, -1001 color=color, -1002 ) -1003 ) -1004 export_response = MF_V3_Tasks_Export.Response( + 434 copy_groups_response = MF_V3_Tasks_CopyGroups.Response( + 435 Index=0, + 436 Type="CopyGroups", + 437 Input=MF_V3_Settings_CopyGroups_CopyGroups( + 438 sourceIndexes=sourceIndexes, + 439 targetIndex=targetIndex, + 440 childPosition=childPosition, + 441 nameSuffix=nameSuffix, + 442 enumerate=enumerate, + 443 ), + 444 Output=None + 445 ) + 446 task = Task(Index=0, Type="CopyGroups", Input=copy_groups_request, Output=copy_groups_response) + 447 self.SendTask(task) + 448 return task + 449 + 450 + 451def remove_projects(self, Input: List[int] = None) -> Task: + 452 + 453 """ + 454 Remove selected projects. + 455 """ + 456 remove_projects_request = MF_V3_Tasks_RemoveProjects.Request( + 457 Index=0, + 458 Type="RemoveProjects", + 459 Input=Input + 460 ) + 461 remove_projects_response = MF_V3_Tasks_RemoveProjects.Response( + 462 Index=0, + 463 Type="RemoveProjects" + 464 ) + 465 task = Task(Index=0, Type="RemoveProjects", Input=remove_projects_request, Output=remove_projects_response) + 466 self.SendTask(task) + 467 return task + 468 + 469 + 470def list_groups(self) -> Task: + 471 + 472 """ + 473 List the scan groups in the current open project. + 474 """ + 475 list_groups_request = MF_V3_Tasks_ListGroups.Request( + 476 Index=0, + 477 Type="ListGroups" + 478 ) + 479 list_groups_response = MF_V3_Tasks_ListGroups.Response( + 480 Index=0, + 481 Type="ListGroups", + 482 Output=None + 483 ) + 484 task = Task(Index=0, Type="ListGroups", Input=list_groups_request, Output=list_groups_response) + 485 self.SendTask(task) + 486 return task + 487 + 488 + 489def list_scans(self) -> Task: + 490 + 491 """ + 492 List the scans in the current open project. + 493 """ + 494 list_scans_request = MF_V3_Tasks_ListScans.Request( + 495 Index=0, + 496 Type="ListScans" + 497 ) + 498 list_scans_response = MF_V3_Tasks_ListScans.Response( + 499 Index=0, + 500 Type="ListScans" + 501 ) + 502 task = Task(Index=0, Type="ListScans", Input=list_scans_request, Output=list_scans_response) + 503 self.SendTask(task) + 504 return task + 505 + 506 + 507def scan_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task: + 508 + 509 """ + 510 Download the raw scan data for a scan in the current open project. + 511 """ + 512 scan_data_request = MF_V3_Tasks_ScanData.Request( + 513 Index=0, + 514 Type="ScanData", + 515 Input=MF_V3_Settings_ScanData_ScanData( + 516 index=index, + 517 mergeStep=mergeStep, + 518 buffers=buffers, + 519 metadata=metadata, + 520 ) + 521 ) + 522 scan_data_response = MF_V3_Tasks_ScanData.Response( + 523 Index=0, + 524 Type="ScanData", + 525 Input=MF_V3_Settings_ScanData_ScanData( + 526 index=index, + 527 mergeStep=mergeStep, + 528 buffers=buffers, + 529 metadata=metadata, + 530 ), + 531 Output=None + 532 ) + 533 task = Task(Index=0, Type="ScanData", Input=scan_data_request, Output=scan_data_response) + 534 self.SendTask(task) + 535 return task + 536 + 537 + 538def set_project(self, index: int = None, name: str = None) -> Task: + 539 + 540 """ + 541 Apply settings to the current open project. + 542 """ + 543 set_project_request = MF_V3_Tasks_SetProject.Request( + 544 Index=0, + 545 Type="SetProject", + 546 Input=MF_V3_Settings_Project_Project( + 547 index=index, + 548 name=name, + 549 ) + 550 ) + 551 set_project_response = MF_V3_Tasks_SetProject.Response( + 552 Index=0, + 553 Type="SetProject" + 554 ) + 555 task = Task(Index=0, Type="SetProject", Input=set_project_request, Output=set_project_response) + 556 self.SendTask(task) + 557 return task + 558 + 559 + 560def set_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task: + 561 + 562 """ + 563 Set scan group properties. + 564 """ + 565 set_group_request = MF_V3_Tasks_SetGroup.Request( + 566 Index=0, + 567 Type="SetGroup", + 568 Input=MF_V3_Settings_Group_Group( + 569 index=index, + 570 name=name, + 571 color=color, + 572 visible=visible, + 573 collapsed=collapsed, + 574 rotation=rotation, + 575 translation=translation, + 576 ) + 577 ) + 578 set_group_response = MF_V3_Tasks_SetGroup.Response( + 579 Index=0, + 580 Type="SetGroup", + 581 Input=MF_V3_Settings_Group_Group( + 582 index=index, + 583 name=name, + 584 color=color, + 585 visible=visible, + 586 collapsed=collapsed, + 587 rotation=rotation, + 588 translation=translation, + 589 ), + 590 Output=None + 591 ) + 592 task = Task(Index=0, Type="SetGroup", Input=set_group_request, Output=set_group_response) + 593 self.SendTask(task) + 594 return task + 595 + 596 + 597def new_group(self, parentIndex: int = None, baseName: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task: + 598 + 599 """ + 600 Create a new scan group. + 601 """ + 602 new_group_request = MF_V3_Tasks_NewGroup.Request( + 603 Index=0, + 604 Type="NewGroup", + 605 Input=MF_V3_Settings_NewGroup_NewGroup( + 606 parentIndex=parentIndex, + 607 baseName=baseName, + 608 color=color, + 609 visible=visible, + 610 collapsed=collapsed, + 611 rotation=rotation, + 612 translation=translation, + 613 ) + 614 ) + 615 new_group_response = MF_V3_Tasks_NewGroup.Response( + 616 Index=0, + 617 Type="NewGroup", + 618 Output=None + 619 ) + 620 task = Task(Index=0, Type="NewGroup", Input=new_group_request, Output=new_group_response) + 621 self.SendTask(task) + 622 return task + 623 + 624 + 625def move_group(self, Input: List[int] = None) -> Task: + 626 + 627 """ + 628 Move a scan group. + 629 """ + 630 move_group_request = MF_V3_Tasks_MoveGroup.Request( + 631 Index=0, + 632 Type="MoveGroup", + 633 Input=Input + 634 ) + 635 move_group_response = MF_V3_Tasks_MoveGroup.Response( + 636 Index=0, + 637 Type="MoveGroup", + 638 Output=None + 639 ) + 640 task = Task(Index=0, Type="MoveGroup", Input=move_group_request, Output=move_group_response) + 641 self.SendTask(task) + 642 return task + 643 + 644 + 645def factory_reset(self) -> Task: + 646 + 647 """ + 648 Reset the scanner to factory settings. + 649 """ + 650 factory_reset_request = MF_V3_Tasks_FactoryReset.Request( + 651 Index=0, + 652 Type="FactoryReset" + 653 ) + 654 factory_reset_response = MF_V3_Tasks_FactoryReset.Response( + 655 Index=0, + 656 Type="FactoryReset" + 657 ) + 658 task = Task(Index=0, Type="FactoryReset", Input=factory_reset_request, Output=factory_reset_response) + 659 self.SendTask(task) + 660 return task + 661 + 662 + 663def flatten_group(self, Input: int) -> Task: + 664 + 665 """ + 666 Flatten a scan group such that it only consists of single scans. + 667 """ + 668 flatten_group_request = MF_V3_Tasks_FlattenGroup.Request( + 669 Index=0, + 670 Type="FlattenGroup", + 671 Input=Input + 672 ) + 673 flatten_group_response = MF_V3_Tasks_FlattenGroup.Response( + 674 Index=0, + 675 Type="FlattenGroup", + 676 Input=Input, + 677 Output=None + 678 ) + 679 task = Task(Index=0, Type="FlattenGroup", Input=flatten_group_request, Output=flatten_group_response) + 680 self.SendTask(task) + 681 return task + 682 + 683 + 684def split_group(self, Input: int) -> Task: + 685 + 686 """ + 687 Split a scan group (ie. move its subgroups to its parent group). + 688 """ + 689 split_group_request = MF_V3_Tasks_SplitGroup.Request( + 690 Index=0, + 691 Type="SplitGroup", + 692 Input=Input + 693 ) + 694 split_group_response = MF_V3_Tasks_SplitGroup.Response( + 695 Index=0, + 696 Type="SplitGroup", + 697 Input=Input, + 698 Output=None + 699 ) + 700 task = Task(Index=0, Type="SplitGroup", Input=split_group_request, Output=split_group_response) + 701 self.SendTask(task) + 702 return task + 703 + 704 + 705def transform_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task: + 706 + 707 """ + 708 Apply a rigid transformation to a group. + 709 """ + 710 transform_group_request = MF_V3_Tasks_TransformGroup.Request( + 711 Index=0, + 712 Type="TransformGroup", + 713 Input=MF_V3_Settings_Group_Group( + 714 index=index, + 715 name=name, + 716 color=color, + 717 visible=visible, + 718 collapsed=collapsed, + 719 rotation=rotation, + 720 translation=translation, + 721 ) + 722 ) + 723 transform_group_response = MF_V3_Tasks_TransformGroup.Response( + 724 Index=0, + 725 Type="TransformGroup", + 726 Input=MF_V3_Settings_Group_Group( + 727 index=index, + 728 name=name, + 729 color=color, + 730 visible=visible, + 731 collapsed=collapsed, + 732 rotation=rotation, + 733 translation=translation, + 734 ), + 735 Output=None + 736 ) + 737 task = Task(Index=0, Type="TransformGroup", Input=transform_group_request, Output=transform_group_response) + 738 self.SendTask(task) + 739 return task + 740 + 741 + 742def remove_groups(self, Input: List[int] = None) -> Task: + 743 + 744 """ + 745 Remove selected scan groups. + 746 """ + 747 remove_groups_request = MF_V3_Tasks_RemoveGroups.Request( + 748 Index=0, + 749 Type="RemoveGroups", + 750 Input=Input + 751 ) + 752 remove_groups_response = MF_V3_Tasks_RemoveGroups.Response( + 753 Index=0, + 754 Type="RemoveGroups", + 755 Output=None + 756 ) + 757 task = Task(Index=0, Type="RemoveGroups", Input=remove_groups_request, Output=remove_groups_response) + 758 self.SendTask(task) + 759 return task + 760 + 761 + 762def bounding_box(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool) -> Task: + 763 + 764 """ + 765 Get the bounding box of a set of scan groups. + 766 """ + 767 bounding_box_request = MF_V3_Tasks_BoundingBox.Request( + 768 Index=0, + 769 Type="BoundingBox", + 770 Input=MF_V3_Settings_BoundingBox_BoundingBox( + 771 selection=selection, + 772 axisAligned=axisAligned, + 773 ) + 774 ) + 775 bounding_box_response = MF_V3_Tasks_BoundingBox.Response( + 776 Index=0, + 777 Type="BoundingBox", + 778 Input=MF_V3_Settings_BoundingBox_BoundingBox( + 779 selection=selection, + 780 axisAligned=axisAligned, + 781 ), + 782 Output=None + 783 ) + 784 task = Task(Index=0, Type="BoundingBox", Input=bounding_box_request, Output=bounding_box_response) + 785 self.SendTask(task) + 786 return task + 787 + 788 + 789def align(self, source: int, target: int, rough: MF_V3_Settings_Align_Align.Rough = None, fine: MF_V3_Settings_Align_Align.Fine = None) -> Task: + 790 + 791 """ + 792 Align two scan groups. + 793 """ + 794 align_request = MF_V3_Tasks_Align.Request( + 795 Index=0, + 796 Type="Align", + 797 Input=MF_V3_Settings_Align_Align( + 798 source=source, + 799 target=target, + 800 rough=rough, + 801 fine=fine, + 802 ) + 803 ) + 804 align_response = MF_V3_Tasks_Align.Response( + 805 Index=0, + 806 Type="Align", + 807 Input=MF_V3_Settings_Align_Align( + 808 source=source, + 809 target=target, + 810 rough=rough, + 811 fine=fine, + 812 ), + 813 Output=None + 814 ) + 815 task = Task(Index=0, Type="Align", Input=align_request, Output=align_response) + 816 self.SendTask(task) + 817 return task + 818 + 819 + 820def smooth(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, taubin: MF_V3_Settings_Smooth_Smooth.Taubin = None) -> Task: + 821 + 822 """ + 823 Smooth a set of scans. + 824 """ + 825 smooth_request = MF_V3_Tasks_Smooth.Request( + 826 Index=0, + 827 Type="Smooth", + 828 Input=MF_V3_Settings_Smooth_Smooth( + 829 selection=selection, + 830 taubin=taubin, + 831 ) + 832 ) + 833 smooth_response = MF_V3_Tasks_Smooth.Response( + 834 Index=0, + 835 Type="Smooth", + 836 Input=MF_V3_Settings_Smooth_Smooth( + 837 selection=selection, + 838 taubin=taubin, + 839 ) + 840 ) + 841 task = Task(Index=0, Type="Smooth", Input=smooth_request, Output=smooth_response) + 842 self.SendTask(task) + 843 return task + 844 + 845 + 846def heat_map(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None) -> Task: + 847 + 848 """ + 849 Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map. + 850 """ + 851 heat_map_request = MF_V3_Tasks_HeatMap.Request( + 852 Index=0, + 853 Type="HeatMap", + 854 Input=MF_V3_Settings_HeatMap_HeatMap( + 855 sources=sources, + 856 targets=targets, + 857 outlierDistance=outlierDistance, + 858 ) + 859 ) + 860 heat_map_response = MF_V3_Tasks_HeatMap.Response( + 861 Index=0, + 862 Type="HeatMap", + 863 Input=MF_V3_Settings_HeatMap_HeatMap( + 864 sources=sources, + 865 targets=targets, + 866 outlierDistance=outlierDistance, + 867 ), + 868 Output=None + 869 ) + 870 task = Task(Index=0, Type="HeatMap", Input=heat_map_request, Output=heat_map_response) + 871 self.SendTask(task) + 872 return task + 873 + 874 + 875def merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, remesh: MF_V3_Settings_Merge_Merge.Remesh = None, simplify: MF_V3_Settings_Merge_Merge.Simplify = None, texturize: bool = None) -> Task: + 876 + 877 """ + 878 Merge two or more scan groups. + 879 """ + 880 merge_request = MF_V3_Tasks_Merge.Request( + 881 Index=0, + 882 Type="Merge", + 883 Input=MF_V3_Settings_Merge_Merge( + 884 selection=selection, + 885 remesh=remesh, + 886 simplify=simplify, + 887 texturize=texturize, + 888 ) + 889 ) + 890 merge_response = MF_V3_Tasks_Merge.Response( + 891 Index=0, + 892 Type="Merge", + 893 Input=MF_V3_Settings_Merge_Merge( + 894 selection=selection, + 895 remesh=remesh, + 896 simplify=simplify, + 897 texturize=texturize, + 898 ), + 899 Output=None + 900 ) + 901 task = Task(Index=0, Type="Merge", Input=merge_request, Output=merge_response) + 902 self.SendTask(task) + 903 return task + 904 + 905 + 906def merge_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task: + 907 + 908 """ + 909 Download the raw scan data for the current merge process. + 910 """ + 911 merge_data_request = MF_V3_Tasks_MergeData.Request( + 912 Index=0, + 913 Type="MergeData", + 914 Input=MF_V3_Settings_ScanData_ScanData( + 915 index=index, + 916 mergeStep=mergeStep, + 917 buffers=buffers, + 918 metadata=metadata, + 919 ) + 920 ) + 921 merge_data_response = MF_V3_Tasks_MergeData.Response( + 922 Index=0, + 923 Type="MergeData", + 924 Input=MF_V3_Settings_ScanData_ScanData( + 925 index=index, + 926 mergeStep=mergeStep, + 927 buffers=buffers, + 928 metadata=metadata, + 929 ), + 930 Output=None + 931 ) + 932 task = Task(Index=0, Type="MergeData", Input=merge_data_request, Output=merge_data_response) + 933 self.SendTask(task) + 934 return task + 935 + 936 + 937def add_merge_to_project(self) -> Task: + 938 + 939 """ + 940 Add a merged scan to the current project. + 941 """ + 942 add_merge_to_project_request = MF_V3_Tasks_AddMergeToProject.Request( + 943 Index=0, + 944 Type="AddMergeToProject" + 945 ) + 946 add_merge_to_project_response = MF_V3_Tasks_AddMergeToProject.Response( + 947 Index=0, + 948 Type="AddMergeToProject", + 949 Output=None + 950 ) + 951 task = Task(Index=0, Type="AddMergeToProject", Input=add_merge_to_project_request, Output=add_merge_to_project_response) + 952 self.SendTask(task) + 953 return task + 954 + 955 + 956def import_file(self, name: str = None, scale: float = None, unit: MF_V3_Settings_Import_Import.Unit = None, center: bool = None, groupIndex: int = None) -> Task: + 957 + 958 """ + 959 Import a set of 3D meshes to the current open project. The meshes must be archived in a ZIP file. + 960 """ + 961 import_file_request = MF_V3_Tasks_Import.Request( + 962 Index=0, + 963 Type="Import", + 964 Input=MF_V3_Settings_Import_Import( + 965 name=name, + 966 scale=scale, + 967 unit=unit, + 968 center=center, + 969 groupIndex=groupIndex, + 970 ) + 971 ) + 972 import_file_response = MF_V3_Tasks_Import.Response( + 973 Index=0, + 974 Type="Import" + 975 ) + 976 task = Task(Index=0, Type="Import", Input=import_file_request, Output=import_file_response) + 977 self.SendTask(task) + 978 return task + 979 + 980 + 981def list_export_formats(self) -> Task: + 982 + 983 """ + 984 List all export formats. + 985 """ + 986 list_export_formats_request = MF_V3_Tasks_ListExportFormats.Request( + 987 Index=0, + 988 Type="ListExportFormats" + 989 ) + 990 list_export_formats_response = MF_V3_Tasks_ListExportFormats.Response( + 991 Index=0, + 992 Type="ListExportFormats" + 993 ) + 994 task = Task(Index=0, Type="ListExportFormats", Input=list_export_formats_request, Output=list_export_formats_response) + 995 self.SendTask(task) + 996 return task + 997 + 998 + 999def export(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task: +1000 +1001 """ +1002 Export a group of scans. +1003 """ +1004 export_request = MF_V3_Tasks_Export.Request( 1005 Index=0, 1006 Type="Export", 1007 Input=MF_V3_Settings_Export_Export( @@ -1261,29 +1297,29 @@

1013 color=color, 1014 ) 1015 ) -1016 task = Task(Index=0, Type="Export", Input=export_request, Output=export_response) -1017 self.SendTask(task) -1018 return task -1019 -1020 -1021def export_heat_map(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task: -1022 -1023 """ -1024 Export a mesh with vertex colors generated by the 'HeatMap' task. -1025 """ -1026 export_heat_map_request = MF_V3_Tasks_ExportHeatMap.Request( -1027 Index=0, -1028 Type="ExportHeatMap", -1029 Input=MF_V3_Settings_Export_Export( -1030 selection=selection, -1031 texture=texture, -1032 merge=merge, -1033 format=format, -1034 scale=scale, -1035 color=color, -1036 ) -1037 ) -1038 export_heat_map_response = MF_V3_Tasks_ExportHeatMap.Response( +1016 export_response = MF_V3_Tasks_Export.Response( +1017 Index=0, +1018 Type="Export", +1019 Input=MF_V3_Settings_Export_Export( +1020 selection=selection, +1021 texture=texture, +1022 merge=merge, +1023 format=format, +1024 scale=scale, +1025 color=color, +1026 ) +1027 ) +1028 task = Task(Index=0, Type="Export", Input=export_request, Output=export_response) +1029 self.SendTask(task) +1030 return task +1031 +1032 +1033def export_heat_map(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task: +1034 +1035 """ +1036 Export a mesh with vertex colors generated by the 'HeatMap' task. +1037 """ +1038 export_heat_map_request = MF_V3_Tasks_ExportHeatMap.Request( 1039 Index=0, 1040 Type="ExportHeatMap", 1041 Input=MF_V3_Settings_Export_Export( @@ -1295,29 +1331,29 @@

1047 color=color, 1048 ) 1049 ) -1050 task = Task(Index=0, Type="ExportHeatMap", Input=export_heat_map_request, Output=export_heat_map_response) -1051 self.SendTask(task) -1052 return task -1053 -1054 -1055def export_merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task: -1056 -1057 """ -1058 Export a merged scan. -1059 """ -1060 export_merge_request = MF_V3_Tasks_ExportMerge.Request( -1061 Index=0, -1062 Type="ExportMerge", -1063 Input=MF_V3_Settings_Export_Export( -1064 selection=selection, -1065 texture=texture, -1066 merge=merge, -1067 format=format, -1068 scale=scale, -1069 color=color, -1070 ) -1071 ) -1072 export_merge_response = MF_V3_Tasks_ExportMerge.Response( +1050 export_heat_map_response = MF_V3_Tasks_ExportHeatMap.Response( +1051 Index=0, +1052 Type="ExportHeatMap", +1053 Input=MF_V3_Settings_Export_Export( +1054 selection=selection, +1055 texture=texture, +1056 merge=merge, +1057 format=format, +1058 scale=scale, +1059 color=color, +1060 ) +1061 ) +1062 task = Task(Index=0, Type="ExportHeatMap", Input=export_heat_map_request, Output=export_heat_map_response) +1063 self.SendTask(task) +1064 return task +1065 +1066 +1067def export_merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task: +1068 +1069 """ +1070 Export a merged scan. +1071 """ +1072 export_merge_request = MF_V3_Tasks_ExportMerge.Request( 1073 Index=0, 1074 Type="ExportMerge", 1075 Input=MF_V3_Settings_Export_Export( @@ -1329,498 +1365,732 @@

1081 color=color, 1082 ) 1083 ) -1084 task = Task(Index=0, Type="ExportMerge", Input=export_merge_request, Output=export_merge_response) -1085 self.SendTask(task) -1086 return task -1087 -1088 -1089def export_logs(self, Input: bool = None) -> Task: -1090 -1091 """ -1092 Export scanner logs. -1093 """ -1094 export_logs_request = MF_V3_Tasks_ExportLogs.Request( -1095 Index=0, -1096 Type="ExportLogs", -1097 Input=Input -1098 ) -1099 export_logs_response = MF_V3_Tasks_ExportLogs.Response( -1100 Index=0, -1101 Type="ExportLogs" -1102 ) -1103 task = Task(Index=0, Type="ExportLogs", Input=export_logs_request, Output=export_logs_response) -1104 self.SendTask(task) -1105 return task -1106 -1107 -1108def export_factory_calibration_logs(self) -> Task: -1109 -1110 """ -1111 Export factory calibration logs. -1112 """ -1113 export_factory_calibration_logs_request = MF_V3_Tasks_ExportFactoryCalibrationLogs.Request( -1114 Index=0, -1115 Type="ExportFactoryCalibrationLogs" -1116 ) -1117 export_factory_calibration_logs_response = MF_V3_Tasks_ExportFactoryCalibrationLogs.Response( -1118 Index=0, -1119 Type="ExportFactoryCalibrationLogs" -1120 ) -1121 task = Task(Index=0, Type="ExportFactoryCalibrationLogs", Input=export_factory_calibration_logs_request, Output=export_factory_calibration_logs_response) -1122 self.SendTask(task) -1123 return task -1124 -1125 -1126def has_cameras(self) -> Task: -1127 -1128 """ -1129 Check if the scanner has working cameras. -1130 """ -1131 has_cameras_request = MF_V3_Tasks_HasCameras.Request( -1132 Index=0, -1133 Type="HasCameras" -1134 ) -1135 has_cameras_response = MF_V3_Tasks_HasCameras.Response( -1136 Index=0, -1137 Type="HasCameras" -1138 ) -1139 task = Task(Index=0, Type="HasCameras", Input=has_cameras_request, Output=has_cameras_response) -1140 self.SendTask(task) -1141 return task -1142 -1143 -1144def has_projector(self) -> Task: -1145 -1146 """ -1147 Check if the scanner has a working projector. -1148 """ -1149 has_projector_request = MF_V3_Tasks_HasProjector.Request( -1150 Index=0, -1151 Type="HasProjector" -1152 ) -1153 has_projector_response = MF_V3_Tasks_HasProjector.Response( -1154 Index=0, -1155 Type="HasProjector" -1156 ) -1157 task = Task(Index=0, Type="HasProjector", Input=has_projector_request, Output=has_projector_response) -1158 self.SendTask(task) -1159 return task -1160 -1161 -1162def has_turntable(self) -> Task: -1163 -1164 """ -1165 Check if the scanner is connected to a working turntable. -1166 """ -1167 has_turntable_request = MF_V3_Tasks_HasTurntable.Request( -1168 Index=0, -1169 Type="HasTurntable" -1170 ) -1171 has_turntable_response = MF_V3_Tasks_HasTurntable.Response( -1172 Index=0, -1173 Type="HasTurntable" -1174 ) -1175 task = Task(Index=0, Type="HasTurntable", Input=has_turntable_request, Output=has_turntable_response) -1176 self.SendTask(task) -1177 return task -1178 -1179 -1180def system_info(self, updateMajor: bool = None, updateNightly: bool = None) -> Task: -1181 -1182 """ -1183 Get system information. -1184 """ -1185 system_info_request = MF_V3_Tasks_SystemInfo.Request( -1186 Index=0, -1187 Type="SystemInfo", -1188 Input=MF_V3_Settings_Software_Software( -1189 updateMajor=updateMajor, -1190 updateNightly=updateNightly, -1191 ) -1192 ) -1193 system_info_response = MF_V3_Tasks_SystemInfo.Response( -1194 Index=0, -1195 Type="SystemInfo", -1196 Output=None -1197 ) -1198 task = Task(Index=0, Type="SystemInfo", Input=system_info_request, Output=system_info_response) -1199 self.SendTask(task) -1200 return task -1201 -1202 -1203def camera_calibration(self) -> Task: -1204 -1205 """ -1206 Get the camera calibration descriptor. -1207 """ -1208 camera_calibration_request = MF_V3_Tasks_CameraCalibration.Request( -1209 Index=0, -1210 Type="CameraCalibration" -1211 ) -1212 camera_calibration_response = MF_V3_Tasks_CameraCalibration.Response( -1213 Index=0, -1214 Type="CameraCalibration" -1215 ) -1216 task = Task(Index=0, Type="CameraCalibration", Input=camera_calibration_request, Output=camera_calibration_response) -1217 self.SendTask(task) -1218 return task -1219 -1220 -1221def turntable_calibration(self) -> Task: -1222 -1223 """ -1224 Get the turntable calibration descriptor. -1225 """ -1226 turntable_calibration_request = MF_V3_Tasks_TurntableCalibration.Request( -1227 Index=0, -1228 Type="TurntableCalibration" -1229 ) -1230 turntable_calibration_response = MF_V3_Tasks_TurntableCalibration.Response( -1231 Index=0, -1232 Type="TurntableCalibration" -1233 ) -1234 task = Task(Index=0, Type="TurntableCalibration", Input=turntable_calibration_request, Output=turntable_calibration_response) -1235 self.SendTask(task) -1236 return task -1237 -1238 -1239def calibration_capture_targets(self) -> Task: -1240 -1241 """ -1242 Get the calibration capture target for each camera calibration capture. -1243 """ -1244 calibration_capture_targets_request = MF_V3_Tasks_CalibrationCaptureTargets.Request( -1245 Index=0, -1246 Type="CalibrationCaptureTargets" -1247 ) -1248 calibration_capture_targets_response = MF_V3_Tasks_CalibrationCaptureTargets.Response( -1249 Index=0, -1250 Type="CalibrationCaptureTargets" -1251 ) -1252 task = Task(Index=0, Type="CalibrationCaptureTargets", Input=calibration_capture_targets_request, Output=calibration_capture_targets_response) -1253 self.SendTask(task) -1254 return task -1255 -1256 -1257def calibrate_cameras(self) -> Task: -1258 -1259 """ -1260 Calibrate the cameras. -1261 """ -1262 calibrate_cameras_request = MF_V3_Tasks_CalibrateCameras.Request( -1263 Index=0, -1264 Type="CalibrateCameras" -1265 ) -1266 calibrate_cameras_response = MF_V3_Tasks_CalibrateCameras.Response( -1267 Index=0, -1268 Type="CalibrateCameras" -1269 ) -1270 task = Task(Index=0, Type="CalibrateCameras", Input=calibrate_cameras_request, Output=calibrate_cameras_response) -1271 self.SendTask(task) -1272 return task -1273 -1274 -1275def calibrate_turntable(self) -> Task: -1276 -1277 """ -1278 Calibrate the turntable. -1279 """ -1280 calibrate_turntable_request = MF_V3_Tasks_CalibrateTurntable.Request( -1281 Index=0, -1282 Type="CalibrateTurntable" -1283 ) -1284 calibrate_turntable_response = MF_V3_Tasks_CalibrateTurntable.Response( -1285 Index=0, -1286 Type="CalibrateTurntable" -1287 ) -1288 task = Task(Index=0, Type="CalibrateTurntable", Input=calibrate_turntable_request, Output=calibrate_turntable_response) -1289 self.SendTask(task) -1290 return task -1291 -1292 -1293def detect_calibration_card(self, Input: int) -> Task: -1294 -1295 """ -1296 Detect the calibration card on one or both cameras. -1297 """ -1298 detect_calibration_card_request = MF_V3_Tasks_DetectCalibrationCard.Request( -1299 Index=0, -1300 Type="DetectCalibrationCard", -1301 Input=Input -1302 ) -1303 detect_calibration_card_response = MF_V3_Tasks_DetectCalibrationCard.Response( -1304 Index=0, -1305 Type="DetectCalibrationCard", -1306 Input=Input -1307 ) -1308 task = Task(Index=0, Type="DetectCalibrationCard", Input=detect_calibration_card_request, Output=detect_calibration_card_response) -1309 self.SendTask(task) -1310 return task -1311 -1312 -1313def restore_factory_calibration(self) -> Task: -1314 -1315 """ -1316 Restore factory calibration. -1317 """ -1318 restore_factory_calibration_request = MF_V3_Tasks_RestoreFactoryCalibration.Request( -1319 Index=0, -1320 Type="RestoreFactoryCalibration" -1321 ) -1322 restore_factory_calibration_response = MF_V3_Tasks_RestoreFactoryCalibration.Response( -1323 Index=0, -1324 Type="RestoreFactoryCalibration" -1325 ) -1326 task = Task(Index=0, Type="RestoreFactoryCalibration", Input=restore_factory_calibration_request, Output=restore_factory_calibration_response) -1327 self.SendTask(task) -1328 return task -1329 -1330 -1331def start_video(self) -> Task: -1332 -1333 """ -1334 Start the video stream. -1335 """ -1336 start_video_request = MF_V3_Tasks_StartVideo.Request( -1337 Index=0, -1338 Type="StartVideo" -1339 ) -1340 start_video_response = MF_V3_Tasks_StartVideo.Response( -1341 Index=0, -1342 Type="StartVideo" -1343 ) -1344 task = Task(Index=0, Type="StartVideo", Input=start_video_request, Output=start_video_response) -1345 self.SendTask(task) -1346 return task -1347 -1348 -1349def stop_video(self) -> Task: -1350 -1351 """ -1352 Stop the video stream. -1353 """ -1354 stop_video_request = MF_V3_Tasks_StopVideo.Request( -1355 Index=0, -1356 Type="StopVideo" -1357 ) -1358 stop_video_response = MF_V3_Tasks_StopVideo.Response( -1359 Index=0, -1360 Type="StopVideo" -1361 ) -1362 task = Task(Index=0, Type="StopVideo", Input=stop_video_request, Output=stop_video_response) -1363 self.SendTask(task) -1364 return task -1365 -1366 -1367def set_cameras(self, selection: List[int] = None, autoExposure: bool = None, exposure: int = None, analogGain: float = None, digitalGain: int = None, focus: int = None) -> Task: -1368 -1369 """ -1370 Apply camera settings to one or both cameras. -1371 """ -1372 set_cameras_request = MF_V3_Tasks_SetCameras.Request( -1373 Index=0, -1374 Type="SetCameras", -1375 Input=MF_V3_Settings_Camera_Camera( -1376 selection=selection, -1377 autoExposure=autoExposure, -1378 exposure=exposure, -1379 analogGain=analogGain, -1380 digitalGain=digitalGain, -1381 focus=focus, -1382 ) -1383 ) -1384 set_cameras_response = MF_V3_Tasks_SetCameras.Response( +1084 export_merge_response = MF_V3_Tasks_ExportMerge.Response( +1085 Index=0, +1086 Type="ExportMerge", +1087 Input=MF_V3_Settings_Export_Export( +1088 selection=selection, +1089 texture=texture, +1090 merge=merge, +1091 format=format, +1092 scale=scale, +1093 color=color, +1094 ) +1095 ) +1096 task = Task(Index=0, Type="ExportMerge", Input=export_merge_request, Output=export_merge_response) +1097 self.SendTask(task) +1098 return task +1099 +1100 +1101def export_logs(self, Input: bool = None) -> Task: +1102 +1103 """ +1104 Export scanner logs. +1105 """ +1106 export_logs_request = MF_V3_Tasks_ExportLogs.Request( +1107 Index=0, +1108 Type="ExportLogs", +1109 Input=Input +1110 ) +1111 export_logs_response = MF_V3_Tasks_ExportLogs.Response( +1112 Index=0, +1113 Type="ExportLogs" +1114 ) +1115 task = Task(Index=0, Type="ExportLogs", Input=export_logs_request, Output=export_logs_response) +1116 self.SendTask(task) +1117 return task +1118 +1119 +1120def export_factory_calibration_logs(self) -> Task: +1121 +1122 """ +1123 Export factory calibration logs. +1124 """ +1125 export_factory_calibration_logs_request = MF_V3_Tasks_ExportFactoryCalibrationLogs.Request( +1126 Index=0, +1127 Type="ExportFactoryCalibrationLogs" +1128 ) +1129 export_factory_calibration_logs_response = MF_V3_Tasks_ExportFactoryCalibrationLogs.Response( +1130 Index=0, +1131 Type="ExportFactoryCalibrationLogs" +1132 ) +1133 task = Task(Index=0, Type="ExportFactoryCalibrationLogs", Input=export_factory_calibration_logs_request, Output=export_factory_calibration_logs_response) +1134 self.SendTask(task) +1135 return task +1136 +1137 +1138def has_cameras(self) -> Task: +1139 +1140 """ +1141 Check if the scanner has working cameras. +1142 """ +1143 has_cameras_request = MF_V3_Tasks_HasCameras.Request( +1144 Index=0, +1145 Type="HasCameras" +1146 ) +1147 has_cameras_response = MF_V3_Tasks_HasCameras.Response( +1148 Index=0, +1149 Type="HasCameras" +1150 ) +1151 task = Task(Index=0, Type="HasCameras", Input=has_cameras_request, Output=has_cameras_response) +1152 self.SendTask(task) +1153 return task +1154 +1155 +1156def has_projector(self) -> Task: +1157 +1158 """ +1159 Check if the scanner has a working projector. +1160 """ +1161 has_projector_request = MF_V3_Tasks_HasProjector.Request( +1162 Index=0, +1163 Type="HasProjector" +1164 ) +1165 has_projector_response = MF_V3_Tasks_HasProjector.Response( +1166 Index=0, +1167 Type="HasProjector" +1168 ) +1169 task = Task(Index=0, Type="HasProjector", Input=has_projector_request, Output=has_projector_response) +1170 self.SendTask(task) +1171 return task +1172 +1173 +1174def has_turntable(self) -> Task: +1175 +1176 """ +1177 Check if the scanner is connected to a working turntable. +1178 """ +1179 has_turntable_request = MF_V3_Tasks_HasTurntable.Request( +1180 Index=0, +1181 Type="HasTurntable" +1182 ) +1183 has_turntable_response = MF_V3_Tasks_HasTurntable.Response( +1184 Index=0, +1185 Type="HasTurntable" +1186 ) +1187 task = Task(Index=0, Type="HasTurntable", Input=has_turntable_request, Output=has_turntable_response) +1188 self.SendTask(task) +1189 return task +1190 +1191 +1192def system_info(self, updateMajor: bool = None, updateNightly: bool = None) -> Task: +1193 +1194 """ +1195 Get system information. +1196 """ +1197 system_info_request = MF_V3_Tasks_SystemInfo.Request( +1198 Index=0, +1199 Type="SystemInfo", +1200 Input=MF_V3_Settings_Software_Software( +1201 updateMajor=updateMajor, +1202 updateNightly=updateNightly, +1203 ) +1204 ) +1205 system_info_response = MF_V3_Tasks_SystemInfo.Response( +1206 Index=0, +1207 Type="SystemInfo", +1208 Output=None +1209 ) +1210 task = Task(Index=0, Type="SystemInfo", Input=system_info_request, Output=system_info_response) +1211 self.SendTask(task) +1212 return task +1213 +1214 +1215def camera_calibration(self) -> Task: +1216 +1217 """ +1218 Get the camera calibration descriptor. +1219 """ +1220 camera_calibration_request = MF_V3_Tasks_CameraCalibration.Request( +1221 Index=0, +1222 Type="CameraCalibration" +1223 ) +1224 camera_calibration_response = MF_V3_Tasks_CameraCalibration.Response( +1225 Index=0, +1226 Type="CameraCalibration" +1227 ) +1228 task = Task(Index=0, Type="CameraCalibration", Input=camera_calibration_request, Output=camera_calibration_response) +1229 self.SendTask(task) +1230 return task +1231 +1232 +1233def turntable_calibration(self) -> Task: +1234 +1235 """ +1236 Get the turntable calibration descriptor. +1237 """ +1238 turntable_calibration_request = MF_V3_Tasks_TurntableCalibration.Request( +1239 Index=0, +1240 Type="TurntableCalibration" +1241 ) +1242 turntable_calibration_response = MF_V3_Tasks_TurntableCalibration.Response( +1243 Index=0, +1244 Type="TurntableCalibration" +1245 ) +1246 task = Task(Index=0, Type="TurntableCalibration", Input=turntable_calibration_request, Output=turntable_calibration_response) +1247 self.SendTask(task) +1248 return task +1249 +1250 +1251def calibration_capture_targets(self) -> Task: +1252 +1253 """ +1254 Get the calibration capture target for each camera calibration capture. +1255 """ +1256 calibration_capture_targets_request = MF_V3_Tasks_CalibrationCaptureTargets.Request( +1257 Index=0, +1258 Type="CalibrationCaptureTargets" +1259 ) +1260 calibration_capture_targets_response = MF_V3_Tasks_CalibrationCaptureTargets.Response( +1261 Index=0, +1262 Type="CalibrationCaptureTargets" +1263 ) +1264 task = Task(Index=0, Type="CalibrationCaptureTargets", Input=calibration_capture_targets_request, Output=calibration_capture_targets_response) +1265 self.SendTask(task) +1266 return task +1267 +1268 +1269def calibrate_cameras(self) -> Task: +1270 +1271 """ +1272 Calibrate the cameras. +1273 """ +1274 calibrate_cameras_request = MF_V3_Tasks_CalibrateCameras.Request( +1275 Index=0, +1276 Type="CalibrateCameras" +1277 ) +1278 calibrate_cameras_response = MF_V3_Tasks_CalibrateCameras.Response( +1279 Index=0, +1280 Type="CalibrateCameras" +1281 ) +1282 task = Task(Index=0, Type="CalibrateCameras", Input=calibrate_cameras_request, Output=calibrate_cameras_response) +1283 self.SendTask(task) +1284 return task +1285 +1286 +1287def calibrate_turntable(self) -> Task: +1288 +1289 """ +1290 Calibrate the turntable. +1291 """ +1292 calibrate_turntable_request = MF_V3_Tasks_CalibrateTurntable.Request( +1293 Index=0, +1294 Type="CalibrateTurntable" +1295 ) +1296 calibrate_turntable_response = MF_V3_Tasks_CalibrateTurntable.Response( +1297 Index=0, +1298 Type="CalibrateTurntable" +1299 ) +1300 task = Task(Index=0, Type="CalibrateTurntable", Input=calibrate_turntable_request, Output=calibrate_turntable_response) +1301 self.SendTask(task) +1302 return task +1303 +1304 +1305def detect_calibration_card(self, Input: int) -> Task: +1306 +1307 """ +1308 Detect the calibration card on one or both cameras. +1309 """ +1310 detect_calibration_card_request = MF_V3_Tasks_DetectCalibrationCard.Request( +1311 Index=0, +1312 Type="DetectCalibrationCard", +1313 Input=Input +1314 ) +1315 detect_calibration_card_response = MF_V3_Tasks_DetectCalibrationCard.Response( +1316 Index=0, +1317 Type="DetectCalibrationCard", +1318 Input=Input +1319 ) +1320 task = Task(Index=0, Type="DetectCalibrationCard", Input=detect_calibration_card_request, Output=detect_calibration_card_response) +1321 self.SendTask(task) +1322 return task +1323 +1324 +1325def restore_factory_calibration(self) -> Task: +1326 +1327 """ +1328 Restore factory calibration. +1329 """ +1330 restore_factory_calibration_request = MF_V3_Tasks_RestoreFactoryCalibration.Request( +1331 Index=0, +1332 Type="RestoreFactoryCalibration" +1333 ) +1334 restore_factory_calibration_response = MF_V3_Tasks_RestoreFactoryCalibration.Response( +1335 Index=0, +1336 Type="RestoreFactoryCalibration" +1337 ) +1338 task = Task(Index=0, Type="RestoreFactoryCalibration", Input=restore_factory_calibration_request, Output=restore_factory_calibration_response) +1339 self.SendTask(task) +1340 return task +1341 +1342 +1343def start_video(self) -> Task: +1344 +1345 """ +1346 Start the video stream. +1347 """ +1348 start_video_request = MF_V3_Tasks_StartVideo.Request( +1349 Index=0, +1350 Type="StartVideo" +1351 ) +1352 start_video_response = MF_V3_Tasks_StartVideo.Response( +1353 Index=0, +1354 Type="StartVideo" +1355 ) +1356 task = Task(Index=0, Type="StartVideo", Input=start_video_request, Output=start_video_response) +1357 self.SendTask(task) +1358 return task +1359 +1360 +1361def stop_video(self) -> Task: +1362 +1363 """ +1364 Stop the video stream. +1365 """ +1366 stop_video_request = MF_V3_Tasks_StopVideo.Request( +1367 Index=0, +1368 Type="StopVideo" +1369 ) +1370 stop_video_response = MF_V3_Tasks_StopVideo.Response( +1371 Index=0, +1372 Type="StopVideo" +1373 ) +1374 task = Task(Index=0, Type="StopVideo", Input=stop_video_request, Output=stop_video_response) +1375 self.SendTask(task) +1376 return task +1377 +1378 +1379def set_cameras(self, selection: List[int] = None, autoExposure: bool = None, exposure: int = None, analogGain: float = None, digitalGain: int = None, focus: int = None) -> Task: +1380 +1381 """ +1382 Apply camera settings to one or both cameras. +1383 """ +1384 set_cameras_request = MF_V3_Tasks_SetCameras.Request( 1385 Index=0, -1386 Type="SetCameras" -1387 ) -1388 task = Task(Index=0, Type="SetCameras", Input=set_cameras_request, Output=set_cameras_response) -1389 self.SendTask(task) -1390 return task -1391 -1392 -1393def set_projector(self, on: bool = None, brightness: float = None, pattern: MF_V3_Settings_Projector_Projector.Pattern = None, image: MF_V3_Settings_Projector_Projector.Image = None, color: List[float] = None, buffer: bytes = None) -> Task: -1394 -1395 """ -1396 Apply projector settings. -1397 """ -1398 set_projector_request = MF_V3_Tasks_SetProjector.Request( -1399 Index=0, -1400 Type="SetProjector", -1401 Input=MF_V3_Settings_Projector_Projector( -1402 on=on, -1403 brightness=brightness, -1404 pattern=pattern, -1405 image=image, -1406 color=color, -1407 ) -1408 ) -1409 set_projector_response = MF_V3_Tasks_SetProjector.Response( -1410 Index=0, -1411 Type="SetProjector" -1412 ) -1413 task = Task(Index=0, Type="SetProjector", Input=set_projector_request, Output=set_projector_response) -1414 self.SendTask(task, buffer) -1415 return task -1416 -1417 -1418def auto_focus(self, applyAll: bool, cameras: List[MF_V3_Settings_AutoFocus_AutoFocus.Camera] = None) -> Task: -1419 -1420 """ -1421 Auto focus one or both cameras. -1422 """ -1423 auto_focus_request = MF_V3_Tasks_AutoFocus.Request( -1424 Index=0, -1425 Type="AutoFocus", -1426 Input=MF_V3_Settings_AutoFocus_AutoFocus( -1427 applyAll=applyAll, -1428 cameras=cameras, -1429 ) -1430 ) -1431 auto_focus_response = MF_V3_Tasks_AutoFocus.Response( -1432 Index=0, -1433 Type="AutoFocus" -1434 ) -1435 task = Task(Index=0, Type="AutoFocus", Input=auto_focus_request, Output=auto_focus_response) -1436 self.SendTask(task) -1437 return task -1438 -1439 -1440def rotate_turntable(self, Input: int) -> Task: -1441 -1442 """ -1443 Rotate the turntable. -1444 """ -1445 rotate_turntable_request = MF_V3_Tasks_RotateTurntable.Request( -1446 Index=0, -1447 Type="RotateTurntable", -1448 Input=Input -1449 ) -1450 rotate_turntable_response = MF_V3_Tasks_RotateTurntable.Response( -1451 Index=0, -1452 Type="RotateTurntable", -1453 Input=Input -1454 ) -1455 task = Task(Index=0, Type="RotateTurntable", Input=rotate_turntable_request, Output=rotate_turntable_response) -1456 self.SendTask(task) -1457 return task -1458 -1459 -1460def new_scan(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task: -1461 -1462 """ -1463 Capture a new scan. -1464 """ -1465 new_scan_request = MF_V3_Tasks_NewScan.Request( -1466 Index=0, -1467 Type="NewScan", -1468 Input=MF_V3_Settings_Scan_Scan( -1469 camera=camera, -1470 projector=projector, -1471 turntable=turntable, -1472 capture=capture, -1473 processing=processing, -1474 alignWithScanner=alignWithScanner, -1475 centerAtOrigin=centerAtOrigin, -1476 ) -1477 ) -1478 new_scan_response = MF_V3_Tasks_NewScan.Response( -1479 Index=0, -1480 Type="NewScan" -1481 ) -1482 task = Task(Index=0, Type="NewScan", Input=new_scan_request, Output=new_scan_response) -1483 self.SendTask(task) -1484 return task -1485 -1486 -1487def capture_image(self, selection: List[int] = None, codec: MF_V3_Settings_CaptureImage_CaptureImage.Codec = None, grayscale: bool = None) -> Task: -1488 -1489 """ -1490 Capture a single Image. -1491 """ -1492 capture_image_request = MF_V3_Tasks_CaptureImage.Request( -1493 Index=0, -1494 Type="CaptureImage", -1495 Input=MF_V3_Settings_CaptureImage_CaptureImage( -1496 selection=selection, -1497 codec=codec, -1498 grayscale=grayscale, -1499 ) -1500 ) -1501 capture_image_response = MF_V3_Tasks_CaptureImage.Response( -1502 Index=0, -1503 Type="CaptureImage", -1504 Input=MF_V3_Settings_CaptureImage_CaptureImage( -1505 selection=selection, -1506 codec=codec, -1507 grayscale=grayscale, -1508 ) -1509 ) -1510 task = Task(Index=0, Type="CaptureImage", Input=capture_image_request, Output=capture_image_response) -1511 self.SendTask(task) -1512 return task -1513 -1514 -1515def depth_map(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task: -1516 -1517 """ -1518 Capture a depth map. -1519 """ -1520 depth_map_request = MF_V3_Tasks_DepthMap.Request( -1521 Index=0, -1522 Type="DepthMap", -1523 Input=MF_V3_Settings_Scan_Scan( -1524 camera=camera, -1525 projector=projector, -1526 turntable=turntable, -1527 capture=capture, -1528 processing=processing, -1529 alignWithScanner=alignWithScanner, -1530 centerAtOrigin=centerAtOrigin, -1531 ) -1532 ) -1533 depth_map_response = MF_V3_Tasks_DepthMap.Response( -1534 Index=0, -1535 Type="DepthMap" -1536 ) -1537 task = Task(Index=0, Type="DepthMap", Input=depth_map_request, Output=depth_map_response) -1538 self.SendTask(task) -1539 return task -1540 -1541 -1542def reboot(self) -> Task: -1543 -1544 """ -1545 Reboot the scanner. -1546 """ -1547 reboot_request = MF_V3_Tasks_Reboot.Request( -1548 Index=0, -1549 Type="Reboot" -1550 ) -1551 reboot_response = MF_V3_Tasks_Reboot.Response( -1552 Index=0, -1553 Type="Reboot" -1554 ) -1555 task = Task(Index=0, Type="Reboot", Input=reboot_request, Output=reboot_response) -1556 self.SendTask(task) -1557 return task -1558 -1559 -1560def shutdown(self) -> Task: -1561 -1562 """ -1563 Shutdown the scanner. -1564 """ -1565 shutdown_request = MF_V3_Tasks_Shutdown.Request( -1566 Index=0, -1567 Type="Shutdown" -1568 ) -1569 shutdown_response = MF_V3_Tasks_Shutdown.Response( -1570 Index=0, -1571 Type="Shutdown" -1572 ) -1573 task = Task(Index=0, Type="Shutdown", Input=shutdown_request, Output=shutdown_response) -1574 self.SendTask(task) -1575 return task +1386 Type="SetCameras", +1387 Input=MF_V3_Settings_Camera_Camera( +1388 selection=selection, +1389 autoExposure=autoExposure, +1390 exposure=exposure, +1391 analogGain=analogGain, +1392 digitalGain=digitalGain, +1393 focus=focus, +1394 ) +1395 ) +1396 set_cameras_response = MF_V3_Tasks_SetCameras.Response( +1397 Index=0, +1398 Type="SetCameras" +1399 ) +1400 task = Task(Index=0, Type="SetCameras", Input=set_cameras_request, Output=set_cameras_response) +1401 self.SendTask(task) +1402 return task +1403 +1404 +1405def set_projector(self, on: bool = None, brightness: float = None, pattern: MF_V3_Settings_Projector_Projector.Pattern = None, image: MF_V3_Settings_Projector_Projector.Image = None, color: List[float] = None, buffer: bytes = None) -> Task: +1406 +1407 """ +1408 Apply projector settings. +1409 """ +1410 set_projector_request = MF_V3_Tasks_SetProjector.Request( +1411 Index=0, +1412 Type="SetProjector", +1413 Input=MF_V3_Settings_Projector_Projector( +1414 on=on, +1415 brightness=brightness, +1416 pattern=pattern, +1417 image=image, +1418 color=color, +1419 ) +1420 ) +1421 set_projector_response = MF_V3_Tasks_SetProjector.Response( +1422 Index=0, +1423 Type="SetProjector" +1424 ) +1425 task = Task(Index=0, Type="SetProjector", Input=set_projector_request, Output=set_projector_response) +1426 self.SendTask(task, buffer) +1427 return task +1428 +1429 +1430def auto_focus(self, applyAll: bool, cameras: List[MF_V3_Settings_AutoFocus_AutoFocus.Camera] = None) -> Task: +1431 +1432 """ +1433 Auto focus one or both cameras. +1434 """ +1435 auto_focus_request = MF_V3_Tasks_AutoFocus.Request( +1436 Index=0, +1437 Type="AutoFocus", +1438 Input=MF_V3_Settings_AutoFocus_AutoFocus( +1439 applyAll=applyAll, +1440 cameras=cameras, +1441 ) +1442 ) +1443 auto_focus_response = MF_V3_Tasks_AutoFocus.Response( +1444 Index=0, +1445 Type="AutoFocus" +1446 ) +1447 task = Task(Index=0, Type="AutoFocus", Input=auto_focus_request, Output=auto_focus_response) +1448 self.SendTask(task) +1449 return task +1450 +1451 +1452def rotate_turntable(self, Input: int) -> Task: +1453 +1454 """ +1455 Rotate the turntable. +1456 """ +1457 rotate_turntable_request = MF_V3_Tasks_RotateTurntable.Request( +1458 Index=0, +1459 Type="RotateTurntable", +1460 Input=Input +1461 ) +1462 rotate_turntable_response = MF_V3_Tasks_RotateTurntable.Response( +1463 Index=0, +1464 Type="RotateTurntable", +1465 Input=Input +1466 ) +1467 task = Task(Index=0, Type="RotateTurntable", Input=rotate_turntable_request, Output=rotate_turntable_response) +1468 self.SendTask(task) +1469 return task +1470 +1471 +1472def new_scan(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task: +1473 +1474 """ +1475 Capture a new scan. +1476 """ +1477 new_scan_request = MF_V3_Tasks_NewScan.Request( +1478 Index=0, +1479 Type="NewScan", +1480 Input=MF_V3_Settings_Scan_Scan( +1481 camera=camera, +1482 projector=projector, +1483 turntable=turntable, +1484 capture=capture, +1485 processing=processing, +1486 alignWithScanner=alignWithScanner, +1487 centerAtOrigin=centerAtOrigin, +1488 ) +1489 ) +1490 new_scan_response = MF_V3_Tasks_NewScan.Response( +1491 Index=0, +1492 Type="NewScan" +1493 ) +1494 task = Task(Index=0, Type="NewScan", Input=new_scan_request, Output=new_scan_response) +1495 self.SendTask(task) +1496 return task +1497 +1498 +1499def capture_image(self, selection: List[int] = None, codec: MF_V3_Settings_CaptureImage_CaptureImage.Codec = None, grayscale: bool = None) -> Task: +1500 +1501 """ +1502 Capture a single Image. +1503 """ +1504 capture_image_request = MF_V3_Tasks_CaptureImage.Request( +1505 Index=0, +1506 Type="CaptureImage", +1507 Input=MF_V3_Settings_CaptureImage_CaptureImage( +1508 selection=selection, +1509 codec=codec, +1510 grayscale=grayscale, +1511 ) +1512 ) +1513 capture_image_response = MF_V3_Tasks_CaptureImage.Response( +1514 Index=0, +1515 Type="CaptureImage", +1516 Input=MF_V3_Settings_CaptureImage_CaptureImage( +1517 selection=selection, +1518 codec=codec, +1519 grayscale=grayscale, +1520 ) +1521 ) +1522 task = Task(Index=0, Type="CaptureImage", Input=capture_image_request, Output=capture_image_response) +1523 self.SendTask(task) +1524 return task +1525 +1526 +1527def depth_map(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task: +1528 +1529 """ +1530 Capture a depth map. +1531 """ +1532 depth_map_request = MF_V3_Tasks_DepthMap.Request( +1533 Index=0, +1534 Type="DepthMap", +1535 Input=MF_V3_Settings_Scan_Scan( +1536 camera=camera, +1537 projector=projector, +1538 turntable=turntable, +1539 capture=capture, +1540 processing=processing, +1541 alignWithScanner=alignWithScanner, +1542 centerAtOrigin=centerAtOrigin, +1543 ) +1544 ) +1545 depth_map_response = MF_V3_Tasks_DepthMap.Response( +1546 Index=0, +1547 Type="DepthMap" +1548 ) +1549 task = Task(Index=0, Type="DepthMap", Input=depth_map_request, Output=depth_map_response) +1550 self.SendTask(task) +1551 return task +1552 +1553 +1554def reboot(self) -> Task: +1555 +1556 """ +1557 Reboot the scanner. +1558 """ +1559 reboot_request = MF_V3_Tasks_Reboot.Request( +1560 Index=0, +1561 Type="Reboot" +1562 ) +1563 reboot_response = MF_V3_Tasks_Reboot.Response( +1564 Index=0, +1565 Type="Reboot" +1566 ) +1567 task = Task(Index=0, Type="Reboot", Input=reboot_request, Output=reboot_response) +1568 self.SendTask(task) +1569 return task +1570 +1571 +1572def shutdown(self) -> Task: +1573 +1574 """ +1575 Shutdown the scanner. +1576 """ +1577 shutdown_request = MF_V3_Tasks_Shutdown.Request( +1578 Index=0, +1579 Type="Shutdown" +1580 ) +1581 shutdown_response = MF_V3_Tasks_Shutdown.Response( +1582 Index=0, +1583 Type="Shutdown" +1584 ) +1585 task = Task(Index=0, Type="Shutdown", Input=shutdown_request, Output=shutdown_response) +1586 self.SendTask(task) +1587 return task +1588 +1589 +1590def get_protocol_info(self) -> Task: +1591 +1592 """ +1593 Get the desktop-processing protocol version and capabilities. +1594 """ +1595 get_protocol_info_request = MF_V3_Tasks_GetProtocolInfo.Request( +1596 Index=0, +1597 Type="GetProtocolInfo" +1598 ) +1599 get_protocol_info_response = MF_V3_Tasks_GetProtocolInfo.Response( +1600 Index=0, +1601 Type="GetProtocolInfo" +1602 ) +1603 task = Task(Index=0, Type="GetProtocolInfo", Input=get_protocol_info_request, Output=get_protocol_info_response) +1604 self.SendTask(task) +1605 return task +1606 +1607 +1608def set_processing_devices(self, Input: List[bool] = None) -> Task: +1609 +1610 """ +1611 Select the scan processing devices (server and/or client processing). +1612 """ +1613 set_processing_devices_request = MF_V3_Tasks_SetProcessingDevices.Request( +1614 Index=0, +1615 Type="SetProcessingDevices", +1616 Input=Input +1617 ) +1618 set_processing_devices_response = MF_V3_Tasks_SetProcessingDevices.Response( +1619 Index=0, +1620 Type="SetProcessingDevices" +1621 ) +1622 task = Task(Index=0, Type="SetProcessingDevices", Input=set_processing_devices_request, Output=set_processing_devices_response) +1623 self.SendTask(task) +1624 return task +1625 +1626 +1627def connect_scanner(self, Input: str) -> Task: +1628 +1629 """ +1630 Connect the desktop engine to a scanner (desktop engine only). +1631 """ +1632 connect_scanner_request = MF_V3_Tasks_ConnectScanner.Request( +1633 Index=0, +1634 Type="ConnectScanner", +1635 Input=Input +1636 ) +1637 connect_scanner_response = MF_V3_Tasks_ConnectScanner.Response( +1638 Index=0, +1639 Type="ConnectScanner" +1640 ) +1641 task = Task(Index=0, Type="ConnectScanner", Input=connect_scanner_request, Output=connect_scanner_response) +1642 self.SendTask(task) +1643 return task +1644 +1645 +1646def disconnect_scanner(self) -> Task: +1647 +1648 """ +1649 Disconnect the desktop engine from its scanner (desktop engine only). +1650 """ +1651 disconnect_scanner_request = MF_V3_Tasks_DisconnectScanner.Request( +1652 Index=0, +1653 Type="DisconnectScanner" +1654 ) +1655 disconnect_scanner_response = MF_V3_Tasks_DisconnectScanner.Response( +1656 Index=0, +1657 Type="DisconnectScanner" +1658 ) +1659 task = Task(Index=0, Type="DisconnectScanner", Input=disconnect_scanner_request, Output=disconnect_scanner_response) +1660 self.SendTask(task) +1661 return task +1662 +1663 +1664def get_scanner_status(self) -> Task: +1665 +1666 """ +1667 Get the desktop engine's scanner connection status (desktop engine only). +1668 """ +1669 get_scanner_status_request = MF_V3_Tasks_GetScannerStatus.Request( +1670 Index=0, +1671 Type="GetScannerStatus" +1672 ) +1673 get_scanner_status_response = MF_V3_Tasks_GetScannerStatus.Response( +1674 Index=0, +1675 Type="GetScannerStatus" +1676 ) +1677 task = Task(Index=0, Type="GetScannerStatus", Input=get_scanner_status_request, Output=get_scanner_status_response) +1678 self.SendTask(task) +1679 return task +1680 +1681 +1682def list_scanner_projects(self) -> Task: +1683 +1684 """ +1685 List the projects on the connected scanner (desktop engine only). +1686 """ +1687 list_scanner_projects_request = MF_V3_Tasks_ListScannerProjects.Request( +1688 Index=0, +1689 Type="ListScannerProjects" +1690 ) +1691 list_scanner_projects_response = MF_V3_Tasks_ListScannerProjects.Response( +1692 Index=0, +1693 Type="ListScannerProjects" +1694 ) +1695 task = Task(Index=0, Type="ListScannerProjects", Input=list_scanner_projects_request, Output=list_scanner_projects_response) +1696 self.SendTask(task) +1697 return task +1698 +1699 +1700def push_project(self, Input: int) -> Task: +1701 +1702 """ +1703 Copy a local project to the connected scanner (desktop engine only). +1704 """ +1705 push_project_request = MF_V3_Tasks_PushProject.Request( +1706 Index=0, +1707 Type="PushProject", +1708 Input=Input +1709 ) +1710 push_project_response = MF_V3_Tasks_PushProject.Response( +1711 Index=0, +1712 Type="PushProject" +1713 ) +1714 task = Task(Index=0, Type="PushProject", Input=push_project_request, Output=push_project_response) +1715 self.SendTask(task) +1716 return task +1717 +1718 +1719def pull_project(self, Input: int) -> Task: +1720 +1721 """ +1722 Copy a project from the connected scanner into the local workspace (desktop engine only). +1723 """ +1724 pull_project_request = MF_V3_Tasks_PullProject.Request( +1725 Index=0, +1726 Type="PullProject", +1727 Input=Input +1728 ) +1729 pull_project_response = MF_V3_Tasks_PullProject.Response( +1730 Index=0, +1731 Type="PullProject" +1732 ) +1733 task = Task(Index=0, Type="PullProject", Input=pull_project_request, Output=pull_project_response) +1734 self.SendTask(task) +1735 return task +1736 +1737 +1738def remove_scanner_projects(self, Input: List[int] = None) -> Task: +1739 +1740 """ +1741 Remove projects on the connected scanner (desktop engine only). +1742 """ +1743 remove_scanner_projects_request = MF_V3_Tasks_RemoveScannerProjects.Request( +1744 Index=0, +1745 Type="RemoveScannerProjects", +1746 Input=Input +1747 ) +1748 remove_scanner_projects_response = MF_V3_Tasks_RemoveScannerProjects.Response( +1749 Index=0, +1750 Type="RemoveScannerProjects" +1751 ) +1752 task = Task(Index=0, Type="RemoveScannerProjects", Input=remove_scanner_projects_request, Output=remove_scanner_projects_response) +1753 self.SendTask(task) +1754 return task +1755 +1756 +1757def download_scanner_project(self, Input: int) -> Task: +1758 +1759 """ +1760 Download a project archive from the connected scanner (desktop engine only). +1761 """ +1762 download_scanner_project_request = MF_V3_Tasks_DownloadScannerProject.Request( +1763 Index=0, +1764 Type="DownloadScannerProject", +1765 Input=Input +1766 ) +1767 download_scanner_project_response = MF_V3_Tasks_DownloadScannerProject.Response( +1768 Index=0, +1769 Type="DownloadScannerProject" +1770 ) +1771 task = Task(Index=0, Type="DownloadScannerProject", Input=download_scanner_project_request, Output=download_scanner_project_response) +1772 self.SendTask(task) +1773 return task +1774 +1775 +1776def storage_info(self) -> Task: +1777 +1778 """ +1779 Get the local and scanner storage space (desktop engine only). +1780 """ +1781 storage_info_request = MF_V3_Tasks_StorageInfo.Request( +1782 Index=0, +1783 Type="StorageInfo" +1784 ) +1785 storage_info_response = MF_V3_Tasks_StorageInfo.Response( +1786 Index=0, +1787 Type="StorageInfo" +1788 ) +1789 task = Task(Index=0, Type="StorageInfo", Input=storage_info_request, Output=storage_info_response) +1790 self.SendTask(task) +1791 return task +1792 +1793 +1794def discover_scanners(self) -> Task: +1795 +1796 """ +1797 Discover scanners on the local network (desktop engine only). +1798 """ +1799 discover_scanners_request = MF_V3_Tasks_DiscoverScanners.Request( +1800 Index=0, +1801 Type="DiscoverScanners" +1802 ) +1803 discover_scanners_response = MF_V3_Tasks_DiscoverScanners.Response( +1804 Index=0, +1805 Type="DiscoverScanners" +1806 ) +1807 task = Task(Index=0, Type="DiscoverScanners", Input=discover_scanners_request, Output=discover_scanners_response) +1808 self.SendTask(task) +1809 return task @@ -1836,22 +2106,22 @@

-
 99def list_network_interfaces(self) -> Task:
-100
-101    """
-102     List available wifi networks.
-103    """
-104    list_network_interfaces_request = MF_V3_Tasks_ListNetworkInterfaces.Request(
-105        Index=0,
-106        Type="ListNetworkInterfaces"
-107    )
-108    list_network_interfaces_response = MF_V3_Tasks_ListNetworkInterfaces.Response(
-109        Index=0,
-110        Type="ListNetworkInterfaces"
-111    )
-112    task = Task(Index=0, Type="ListNetworkInterfaces", Input=list_network_interfaces_request, Output=list_network_interfaces_response)
-113    self.SendTask(task)
-114    return task
+            
111def list_network_interfaces(self) -> Task:
+112
+113    """
+114     List available wifi networks.
+115    """
+116    list_network_interfaces_request = MF_V3_Tasks_ListNetworkInterfaces.Request(
+117        Index=0,
+118        Type="ListNetworkInterfaces"
+119    )
+120    list_network_interfaces_response = MF_V3_Tasks_ListNetworkInterfaces.Response(
+121        Index=0,
+122        Type="ListNetworkInterfaces"
+123    )
+124    task = Task(Index=0, Type="ListNetworkInterfaces", Input=list_network_interfaces_request, Output=list_network_interfaces_response)
+125    self.SendTask(task)
+126    return task
 
@@ -1871,22 +2141,22 @@

-
117def list_wifi(self) -> Task:
-118
-119    """
-120     List available wifi networks.
-121    """
-122    list_wifi_request = MF_V3_Tasks_ListWifi.Request(
-123        Index=0,
-124        Type="ListWifi"
-125    )
-126    list_wifi_response = MF_V3_Tasks_ListWifi.Response(
-127        Index=0,
-128        Type="ListWifi"
-129    )
-130    task = Task(Index=0, Type="ListWifi", Input=list_wifi_request, Output=list_wifi_response)
-131    self.SendTask(task)
-132    return task
+            
129def list_wifi(self) -> Task:
+130
+131    """
+132     List available wifi networks.
+133    """
+134    list_wifi_request = MF_V3_Tasks_ListWifi.Request(
+135        Index=0,
+136        Type="ListWifi"
+137    )
+138    list_wifi_response = MF_V3_Tasks_ListWifi.Response(
+139        Index=0,
+140        Type="ListWifi"
+141    )
+142    task = Task(Index=0, Type="ListWifi", Input=list_wifi_request, Output=list_wifi_response)
+143    self.SendTask(task)
+144    return task
 
@@ -1906,30 +2176,30 @@

-
135def connect_wifi(self, ssid: str, password: str) -> Task:
-136
-137    """
-138     Connect to a wifi network.
-139    """
-140    connect_wifi_request = MF_V3_Tasks_ConnectWifi.Request(
-141        Index=0,
-142        Type="ConnectWifi",
-143        Input=MF_V3_Settings_Wifi_Wifi(
-144            ssid=ssid,
-145            password=password,
-146        )
-147    )
-148    connect_wifi_response = MF_V3_Tasks_ConnectWifi.Response(
-149        Index=0,
-150        Type="ConnectWifi",
-151        Input=MF_V3_Settings_Wifi_Wifi(
-152            ssid=ssid,
-153            password=password,
-154        )
-155    )
-156    task = Task(Index=0, Type="ConnectWifi", Input=connect_wifi_request, Output=connect_wifi_response)
-157    self.SendTask(task)
-158    return task
+            
147def connect_wifi(self, ssid: str, password: str) -> Task:
+148
+149    """
+150     Connect to a wifi network.
+151    """
+152    connect_wifi_request = MF_V3_Tasks_ConnectWifi.Request(
+153        Index=0,
+154        Type="ConnectWifi",
+155        Input=MF_V3_Settings_Wifi_Wifi(
+156            ssid=ssid,
+157            password=password,
+158        )
+159    )
+160    connect_wifi_response = MF_V3_Tasks_ConnectWifi.Response(
+161        Index=0,
+162        Type="ConnectWifi",
+163        Input=MF_V3_Settings_Wifi_Wifi(
+164            ssid=ssid,
+165            password=password,
+166        )
+167    )
+168    task = Task(Index=0, Type="ConnectWifi", Input=connect_wifi_request, Output=connect_wifi_response)
+169    self.SendTask(task)
+170    return task
 
@@ -1949,22 +2219,22 @@

-
161def forget_wifi(self) -> Task:
-162
-163    """
-164     Forget all wifi connections.
-165    """
-166    forget_wifi_request = MF_V3_Tasks_ForgetWifi.Request(
-167        Index=0,
-168        Type="ForgetWifi"
-169    )
-170    forget_wifi_response = MF_V3_Tasks_ForgetWifi.Response(
-171        Index=0,
-172        Type="ForgetWifi"
-173    )
-174    task = Task(Index=0, Type="ForgetWifi", Input=forget_wifi_request, Output=forget_wifi_response)
-175    self.SendTask(task)
-176    return task
+            
173def forget_wifi(self) -> Task:
+174
+175    """
+176     Forget all wifi connections.
+177    """
+178    forget_wifi_request = MF_V3_Tasks_ForgetWifi.Request(
+179        Index=0,
+180        Type="ForgetWifi"
+181    )
+182    forget_wifi_response = MF_V3_Tasks_ForgetWifi.Response(
+183        Index=0,
+184        Type="ForgetWifi"
+185    )
+186    task = Task(Index=0, Type="ForgetWifi", Input=forget_wifi_request, Output=forget_wifi_response)
+187    self.SendTask(task)
+188    return task
 
@@ -1984,22 +2254,22 @@

-
179def list_settings(self) -> Task:
-180
-181    """
-182     Get scanner settings.
-183    """
-184    list_settings_request = MF_V3_Tasks_ListSettings.Request(
-185        Index=0,
-186        Type="ListSettings"
-187    )
-188    list_settings_response = MF_V3_Tasks_ListSettings.Response(
-189        Index=0,
-190        Type="ListSettings"
-191    )
-192    task = Task(Index=0, Type="ListSettings", Input=list_settings_request, Output=list_settings_response)
-193    self.SendTask(task)
-194    return task
+            
191def list_settings(self) -> Task:
+192
+193    """
+194     Get scanner settings.
+195    """
+196    list_settings_request = MF_V3_Tasks_ListSettings.Request(
+197        Index=0,
+198        Type="ListSettings"
+199    )
+200    list_settings_response = MF_V3_Tasks_ListSettings.Response(
+201        Index=0,
+202        Type="ListSettings"
+203    )
+204    task = Task(Index=0, Type="ListSettings", Input=list_settings_request, Output=list_settings_response)
+205    self.SendTask(task)
+206    return task
 
@@ -2019,22 +2289,22 @@

-
197def push_settings(self) -> Task:
-198
-199    """
-200     Push the current scanner settings to the settings stack.
-201    """
-202    push_settings_request = MF_V3_Tasks_PushSettings.Request(
-203        Index=0,
-204        Type="PushSettings"
-205    )
-206    push_settings_response = MF_V3_Tasks_PushSettings.Response(
-207        Index=0,
-208        Type="PushSettings"
-209    )
-210    task = Task(Index=0, Type="PushSettings", Input=push_settings_request, Output=push_settings_response)
-211    self.SendTask(task)
-212    return task
+            
209def push_settings(self) -> Task:
+210
+211    """
+212     Push the current scanner settings to the settings stack.
+213    """
+214    push_settings_request = MF_V3_Tasks_PushSettings.Request(
+215        Index=0,
+216        Type="PushSettings"
+217    )
+218    push_settings_response = MF_V3_Tasks_PushSettings.Response(
+219        Index=0,
+220        Type="PushSettings"
+221    )
+222    task = Task(Index=0, Type="PushSettings", Input=push_settings_request, Output=push_settings_response)
+223    self.SendTask(task)
+224    return task
 
@@ -2054,23 +2324,23 @@

-
215def pop_settings(self, Input: bool = None) -> Task:
-216
-217    """
-218      Pop and restore scanner settings from the settings stack.
-219    """
-220    pop_settings_request = MF_V3_Tasks_PopSettings.Request(
-221        Index=0,
-222        Type="PopSettings",
-223        Input=Input
-224    )
-225    pop_settings_response = MF_V3_Tasks_PopSettings.Response(
-226        Index=0,
-227        Type="PopSettings"
-228    )
-229    task = Task(Index=0, Type="PopSettings", Input=pop_settings_request, Output=pop_settings_response)
-230    self.SendTask(task)
-231    return task
+            
227def pop_settings(self, Input: bool = None) -> Task:
+228
+229    """
+230      Pop and restore scanner settings from the settings stack.
+231    """
+232    pop_settings_request = MF_V3_Tasks_PopSettings.Request(
+233        Index=0,
+234        Type="PopSettings",
+235        Input=Input
+236    )
+237    pop_settings_response = MF_V3_Tasks_PopSettings.Response(
+238        Index=0,
+239        Type="PopSettings"
+240    )
+241    task = Task(Index=0, Type="PopSettings", Input=pop_settings_request, Output=pop_settings_response)
+242    self.SendTask(task)
+243    return task
 
@@ -2090,46 +2360,46 @@

-
234def update_settings(self, advanced: MF_V3_Settings_Advanced_Advanced = None, camera: MF_V3_Settings_Camera_Camera = None, capture: MF_V3_Settings_Capture_Capture = None, i18n: MF_V3_Settings_I18n_I18n = None, projector: MF_V3_Settings_Projector_Projector = None, style: MF_V3_Settings_Style_Style = None, turntable: MF_V3_Settings_Turntable_Turntable = None, tutorials: MF_V3_Settings_Tutorials_Tutorials = None, viewer: MF_V3_Settings_Viewer_Viewer = None, software: MF_V3_Settings_Software_Software = None) -> Task:
-235
-236    """
-237     Update scanner settings.
-238    """
-239    update_settings_request = MF_V3_Tasks_UpdateSettings.Request(
-240        Index=0,
-241        Type="UpdateSettings",
-242        Input=MF_V3_Settings_Scanner_Scanner(
-243            advanced=advanced,
-244            camera=camera,
-245            capture=capture,
-246            i18n=i18n,
-247            projector=projector,
-248            style=style,
-249            turntable=turntable,
-250            tutorials=tutorials,
-251            viewer=viewer,
-252            software=software,
-253        )
-254    )
-255    update_settings_response = MF_V3_Tasks_UpdateSettings.Response(
-256        Index=0,
-257        Type="UpdateSettings",
-258        Input=MF_V3_Settings_Scanner_Scanner(
-259            advanced=advanced,
-260            camera=camera,
-261            capture=capture,
-262            i18n=i18n,
-263            projector=projector,
-264            style=style,
-265            turntable=turntable,
-266            tutorials=tutorials,
-267            viewer=viewer,
-268            software=software,
-269        )
-270    )
-271    task = Task(Index=0, Type="UpdateSettings", Input=update_settings_request, Output=update_settings_response)
-272    self.SendTask(task)
-273    return task
+            
246def update_settings(self, advanced: MF_V3_Settings_Advanced_Advanced = None, camera: MF_V3_Settings_Camera_Camera = None, capture: MF_V3_Settings_Capture_Capture = None, i18n: MF_V3_Settings_I18n_I18n = None, projector: MF_V3_Settings_Projector_Projector = None, style: MF_V3_Settings_Style_Style = None, turntable: MF_V3_Settings_Turntable_Turntable = None, tutorials: MF_V3_Settings_Tutorials_Tutorials = None, viewer: MF_V3_Settings_Viewer_Viewer = None, software: MF_V3_Settings_Software_Software = None) -> Task:
+247
+248    """
+249     Update scanner settings.
+250    """
+251    update_settings_request = MF_V3_Tasks_UpdateSettings.Request(
+252        Index=0,
+253        Type="UpdateSettings",
+254        Input=MF_V3_Settings_Scanner_Scanner(
+255            advanced=advanced,
+256            camera=camera,
+257            capture=capture,
+258            i18n=i18n,
+259            projector=projector,
+260            style=style,
+261            turntable=turntable,
+262            tutorials=tutorials,
+263            viewer=viewer,
+264            software=software,
+265        )
+266    )
+267    update_settings_response = MF_V3_Tasks_UpdateSettings.Response(
+268        Index=0,
+269        Type="UpdateSettings",
+270        Input=MF_V3_Settings_Scanner_Scanner(
+271            advanced=advanced,
+272            camera=camera,
+273            capture=capture,
+274            i18n=i18n,
+275            projector=projector,
+276            style=style,
+277            turntable=turntable,
+278            tutorials=tutorials,
+279            viewer=viewer,
+280            software=software,
+281        )
+282    )
+283    task = Task(Index=0, Type="UpdateSettings", Input=update_settings_request, Output=update_settings_response)
+284    self.SendTask(task)
+285    return task
 
@@ -2149,22 +2419,22 @@

-
276def list_projects(self) -> Task:
-277
-278    """
-279     List all projects.
-280    """
-281    list_projects_request = MF_V3_Tasks_ListProjects.Request(
-282        Index=0,
-283        Type="ListProjects"
-284    )
-285    list_projects_response = MF_V3_Tasks_ListProjects.Response(
-286        Index=0,
-287        Type="ListProjects"
-288    )
-289    task = Task(Index=0, Type="ListProjects", Input=list_projects_request, Output=list_projects_response)
-290    self.SendTask(task)
-291    return task
+            
288def list_projects(self) -> Task:
+289
+290    """
+291     List all projects.
+292    """
+293    list_projects_request = MF_V3_Tasks_ListProjects.Request(
+294        Index=0,
+295        Type="ListProjects"
+296    )
+297    list_projects_response = MF_V3_Tasks_ListProjects.Response(
+298        Index=0,
+299        Type="ListProjects"
+300    )
+301    task = Task(Index=0, Type="ListProjects", Input=list_projects_request, Output=list_projects_response)
+302    self.SendTask(task)
+303    return task
 
@@ -2184,24 +2454,24 @@

-
294def download_project(self, Input: int) -> Task:
-295
-296    """
-297     Download a project from the scanner.
-298    """
-299    download_project_request = MF_V3_Tasks_DownloadProject.Request(
-300        Index=0,
-301        Type="DownloadProject",
-302        Input=Input
-303    )
-304    download_project_response = MF_V3_Tasks_DownloadProject.Response(
-305        Index=0,
-306        Type="DownloadProject",
-307        Input=Input
-308    )
-309    task = Task(Index=0, Type="DownloadProject", Input=download_project_request, Output=download_project_response)
-310    self.SendTask(task)
-311    return task
+            
306def download_project(self, Input: int) -> Task:
+307
+308    """
+309     Download a project from the scanner.
+310    """
+311    download_project_request = MF_V3_Tasks_DownloadProject.Request(
+312        Index=0,
+313        Type="DownloadProject",
+314        Input=Input
+315    )
+316    download_project_response = MF_V3_Tasks_DownloadProject.Response(
+317        Index=0,
+318        Type="DownloadProject",
+319        Input=Input
+320    )
+321    task = Task(Index=0, Type="DownloadProject", Input=download_project_request, Output=download_project_response)
+322    self.SendTask(task)
+323    return task
 
@@ -2221,22 +2491,22 @@

-
314def upload_project(self, buffer: bytes) -> Task:
-315
-316    """
-317     Upload a project to the scanner.
-318    """
-319    upload_project_request = MF_V3_Tasks_UploadProject.Request(
-320        Index=0,
-321        Type="UploadProject"
-322    )
-323    upload_project_response = MF_V3_Tasks_UploadProject.Response(
-324        Index=0,
-325        Type="UploadProject"
-326    )
-327    task = Task(Index=0, Type="UploadProject", Input=upload_project_request, Output=upload_project_response)
-328    self.SendTask(task, buffer)
-329    return task
+            
326def upload_project(self, buffer: bytes) -> Task:
+327
+328    """
+329     Upload a project to the scanner.
+330    """
+331    upload_project_request = MF_V3_Tasks_UploadProject.Request(
+332        Index=0,
+333        Type="UploadProject"
+334    )
+335    upload_project_response = MF_V3_Tasks_UploadProject.Response(
+336        Index=0,
+337        Type="UploadProject"
+338    )
+339    task = Task(Index=0, Type="UploadProject", Input=upload_project_request, Output=upload_project_response)
+340    self.SendTask(task, buffer)
+341    return task
 
@@ -2256,23 +2526,23 @@

-
332def new_project(self, Input: str = None) -> Task:
-333
-334    """
-335     Create a new project.
-336    """
-337    new_project_request = MF_V3_Tasks_NewProject.Request(
-338        Index=0,
-339        Type="NewProject",
-340        Input=Input
-341    )
-342    new_project_response = MF_V3_Tasks_NewProject.Response(
-343        Index=0,
-344        Type="NewProject"
-345    )
-346    task = Task(Index=0, Type="NewProject", Input=new_project_request, Output=new_project_response)
-347    self.SendTask(task)
-348    return task
+            
344def new_project(self, Input: str = None) -> Task:
+345
+346    """
+347     Create a new project.
+348    """
+349    new_project_request = MF_V3_Tasks_NewProject.Request(
+350        Index=0,
+351        Type="NewProject",
+352        Input=Input
+353    )
+354    new_project_response = MF_V3_Tasks_NewProject.Response(
+355        Index=0,
+356        Type="NewProject"
+357    )
+358    task = Task(Index=0, Type="NewProject", Input=new_project_request, Output=new_project_response)
+359    self.SendTask(task)
+360    return task
 
@@ -2292,24 +2562,24 @@

-
351def open_project(self, Input: int) -> Task:
-352
-353    """
-354     Open an existing project.
-355    """
-356    open_project_request = MF_V3_Tasks_OpenProject.Request(
-357        Index=0,
-358        Type="OpenProject",
-359        Input=Input
-360    )
-361    open_project_response = MF_V3_Tasks_OpenProject.Response(
-362        Index=0,
-363        Type="OpenProject",
-364        Input=Input
-365    )
-366    task = Task(Index=0, Type="OpenProject", Input=open_project_request, Output=open_project_response)
-367    self.SendTask(task)
-368    return task
+            
363def open_project(self, Input: int) -> Task:
+364
+365    """
+366     Open an existing project.
+367    """
+368    open_project_request = MF_V3_Tasks_OpenProject.Request(
+369        Index=0,
+370        Type="OpenProject",
+371        Input=Input
+372    )
+373    open_project_response = MF_V3_Tasks_OpenProject.Response(
+374        Index=0,
+375        Type="OpenProject",
+376        Input=Input
+377    )
+378    task = Task(Index=0, Type="OpenProject", Input=open_project_request, Output=open_project_response)
+379    self.SendTask(task)
+380    return task
 
@@ -2329,22 +2599,22 @@

-
371def clear_settings(self) -> Task:
-372
-373    """
-374     Clear scanner settings and restore the default values.
-375    """
-376    clear_settings_request = MF_V3_Tasks_ClearSettings.Request(
-377        Index=0,
-378        Type="ClearSettings"
-379    )
-380    clear_settings_response = MF_V3_Tasks_ClearSettings.Response(
-381        Index=0,
-382        Type="ClearSettings"
-383    )
-384    task = Task(Index=0, Type="ClearSettings", Input=clear_settings_request, Output=clear_settings_response)
-385    self.SendTask(task)
-386    return task
+            
383def clear_settings(self) -> Task:
+384
+385    """
+386     Clear scanner settings and restore the default values.
+387    """
+388    clear_settings_request = MF_V3_Tasks_ClearSettings.Request(
+389        Index=0,
+390        Type="ClearSettings"
+391    )
+392    clear_settings_response = MF_V3_Tasks_ClearSettings.Response(
+393        Index=0,
+394        Type="ClearSettings"
+395    )
+396    task = Task(Index=0, Type="ClearSettings", Input=clear_settings_request, Output=clear_settings_response)
+397    self.SendTask(task)
+398    return task
 
@@ -2364,22 +2634,22 @@

-
389def close_project(self) -> Task:
-390
-391    """
-392     Close the current open project.
-393    """
-394    close_project_request = MF_V3_Tasks_CloseProject.Request(
-395        Index=0,
-396        Type="CloseProject"
-397    )
-398    close_project_response = MF_V3_Tasks_CloseProject.Response(
-399        Index=0,
-400        Type="CloseProject"
-401    )
-402    task = Task(Index=0, Type="CloseProject", Input=close_project_request, Output=close_project_response)
-403    self.SendTask(task)
-404    return task
+            
401def close_project(self) -> Task:
+402
+403    """
+404     Close the current open project.
+405    """
+406    close_project_request = MF_V3_Tasks_CloseProject.Request(
+407        Index=0,
+408        Type="CloseProject"
+409    )
+410    close_project_response = MF_V3_Tasks_CloseProject.Response(
+411        Index=0,
+412        Type="CloseProject"
+413    )
+414    task = Task(Index=0, Type="CloseProject", Input=close_project_request, Output=close_project_response)
+415    self.SendTask(task)
+416    return task
 
@@ -2399,37 +2669,37 @@

-
407def copy_groups(self, sourceIndexes: List[int] = None, targetIndex: int = None, childPosition: int = None, nameSuffix: str = None, enumerate: bool = None) -> Task:
-408
-409    """
-410     Copy a set of scan groups in the current open project.
-411    """
-412    copy_groups_request = MF_V3_Tasks_CopyGroups.Request(
-413        Index=0,
-414        Type="CopyGroups",
-415        Input=MF_V3_Settings_CopyGroups_CopyGroups(
-416            sourceIndexes=sourceIndexes,
-417            targetIndex=targetIndex,
-418            childPosition=childPosition,
-419            nameSuffix=nameSuffix,
-420            enumerate=enumerate,
-421        )
-422    )
-423    copy_groups_response = MF_V3_Tasks_CopyGroups.Response(
-424        Index=0,
-425        Type="CopyGroups",
-426        Input=MF_V3_Settings_CopyGroups_CopyGroups(
-427            sourceIndexes=sourceIndexes,
-428            targetIndex=targetIndex,
-429            childPosition=childPosition,
-430            nameSuffix=nameSuffix,
-431            enumerate=enumerate,
-432        ),
-433        Output=None
+            
419def copy_groups(self, sourceIndexes: List[int] = None, targetIndex: int = None, childPosition: int = None, nameSuffix: str = None, enumerate: bool = None) -> Task:
+420
+421    """
+422     Copy a set of scan groups in the current open project.
+423    """
+424    copy_groups_request = MF_V3_Tasks_CopyGroups.Request(
+425        Index=0,
+426        Type="CopyGroups",
+427        Input=MF_V3_Settings_CopyGroups_CopyGroups(
+428            sourceIndexes=sourceIndexes,
+429            targetIndex=targetIndex,
+430            childPosition=childPosition,
+431            nameSuffix=nameSuffix,
+432            enumerate=enumerate,
+433        )
 434    )
-435    task = Task(Index=0, Type="CopyGroups", Input=copy_groups_request, Output=copy_groups_response)
-436    self.SendTask(task)
-437    return task
+435    copy_groups_response = MF_V3_Tasks_CopyGroups.Response(
+436        Index=0,
+437        Type="CopyGroups",
+438        Input=MF_V3_Settings_CopyGroups_CopyGroups(
+439            sourceIndexes=sourceIndexes,
+440            targetIndex=targetIndex,
+441            childPosition=childPosition,
+442            nameSuffix=nameSuffix,
+443            enumerate=enumerate,
+444        ),
+445        Output=None
+446    )
+447    task = Task(Index=0, Type="CopyGroups", Input=copy_groups_request, Output=copy_groups_response)
+448    self.SendTask(task)
+449    return task
 
@@ -2449,23 +2719,23 @@

-
440def remove_projects(self, Input: List[int] = None) -> Task:
-441
-442    """
-443     Remove selected projects.
-444    """
-445    remove_projects_request = MF_V3_Tasks_RemoveProjects.Request(
-446        Index=0,
-447        Type="RemoveProjects",
-448        Input=Input
-449    )
-450    remove_projects_response = MF_V3_Tasks_RemoveProjects.Response(
-451        Index=0,
-452        Type="RemoveProjects"
-453    )
-454    task = Task(Index=0, Type="RemoveProjects", Input=remove_projects_request, Output=remove_projects_response)
-455    self.SendTask(task)
-456    return task
+            
452def remove_projects(self, Input: List[int] = None) -> Task:
+453
+454    """
+455     Remove selected projects.
+456    """
+457    remove_projects_request = MF_V3_Tasks_RemoveProjects.Request(
+458        Index=0,
+459        Type="RemoveProjects",
+460        Input=Input
+461    )
+462    remove_projects_response = MF_V3_Tasks_RemoveProjects.Response(
+463        Index=0,
+464        Type="RemoveProjects"
+465    )
+466    task = Task(Index=0, Type="RemoveProjects", Input=remove_projects_request, Output=remove_projects_response)
+467    self.SendTask(task)
+468    return task
 
@@ -2485,23 +2755,23 @@

-
459def list_groups(self) -> Task:
-460
-461    """
-462     List the scan groups in the current open project.
-463    """
-464    list_groups_request = MF_V3_Tasks_ListGroups.Request(
-465        Index=0,
-466        Type="ListGroups"
-467    )
-468    list_groups_response = MF_V3_Tasks_ListGroups.Response(
-469        Index=0,
-470        Type="ListGroups",
-471        Output=None
-472    )
-473    task = Task(Index=0, Type="ListGroups", Input=list_groups_request, Output=list_groups_response)
-474    self.SendTask(task)
-475    return task
+            
471def list_groups(self) -> Task:
+472
+473    """
+474     List the scan groups in the current open project.
+475    """
+476    list_groups_request = MF_V3_Tasks_ListGroups.Request(
+477        Index=0,
+478        Type="ListGroups"
+479    )
+480    list_groups_response = MF_V3_Tasks_ListGroups.Response(
+481        Index=0,
+482        Type="ListGroups",
+483        Output=None
+484    )
+485    task = Task(Index=0, Type="ListGroups", Input=list_groups_request, Output=list_groups_response)
+486    self.SendTask(task)
+487    return task
 
@@ -2521,22 +2791,22 @@

-
478def list_scans(self) -> Task:
-479
-480    """
-481     List the scans in the current open project.
-482    """
-483    list_scans_request = MF_V3_Tasks_ListScans.Request(
-484        Index=0,
-485        Type="ListScans"
-486    )
-487    list_scans_response = MF_V3_Tasks_ListScans.Response(
-488        Index=0,
-489        Type="ListScans"
-490    )
-491    task = Task(Index=0, Type="ListScans", Input=list_scans_request, Output=list_scans_response)
-492    self.SendTask(task)
-493    return task
+            
490def list_scans(self) -> Task:
+491
+492    """
+493     List the scans in the current open project.
+494    """
+495    list_scans_request = MF_V3_Tasks_ListScans.Request(
+496        Index=0,
+497        Type="ListScans"
+498    )
+499    list_scans_response = MF_V3_Tasks_ListScans.Response(
+500        Index=0,
+501        Type="ListScans"
+502    )
+503    task = Task(Index=0, Type="ListScans", Input=list_scans_request, Output=list_scans_response)
+504    self.SendTask(task)
+505    return task
 
@@ -2556,35 +2826,35 @@

-
496def scan_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task:
-497
-498    """
-499     Download the raw scan data for a scan in the current open project.
-500    """
-501    scan_data_request = MF_V3_Tasks_ScanData.Request(
-502        Index=0,
-503        Type="ScanData",
-504        Input=MF_V3_Settings_ScanData_ScanData(
-505            index=index,
-506            mergeStep=mergeStep,
-507            buffers=buffers,
-508            metadata=metadata,
-509        )
-510    )
-511    scan_data_response = MF_V3_Tasks_ScanData.Response(
-512        Index=0,
-513        Type="ScanData",
-514        Input=MF_V3_Settings_ScanData_ScanData(
-515            index=index,
-516            mergeStep=mergeStep,
-517            buffers=buffers,
-518            metadata=metadata,
-519        ),
-520        Output=None
-521    )
-522    task = Task(Index=0, Type="ScanData", Input=scan_data_request, Output=scan_data_response)
-523    self.SendTask(task)
-524    return task
+            
508def scan_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task:
+509
+510    """
+511     Download the raw scan data for a scan in the current open project.
+512    """
+513    scan_data_request = MF_V3_Tasks_ScanData.Request(
+514        Index=0,
+515        Type="ScanData",
+516        Input=MF_V3_Settings_ScanData_ScanData(
+517            index=index,
+518            mergeStep=mergeStep,
+519            buffers=buffers,
+520            metadata=metadata,
+521        )
+522    )
+523    scan_data_response = MF_V3_Tasks_ScanData.Response(
+524        Index=0,
+525        Type="ScanData",
+526        Input=MF_V3_Settings_ScanData_ScanData(
+527            index=index,
+528            mergeStep=mergeStep,
+529            buffers=buffers,
+530            metadata=metadata,
+531        ),
+532        Output=None
+533    )
+534    task = Task(Index=0, Type="ScanData", Input=scan_data_request, Output=scan_data_response)
+535    self.SendTask(task)
+536    return task
 
@@ -2604,26 +2874,26 @@

-
527def set_project(self, index: int = None, name: str = None) -> Task:
-528
-529    """
-530     Apply settings to the current open project.
-531    """
-532    set_project_request = MF_V3_Tasks_SetProject.Request(
-533        Index=0,
-534        Type="SetProject",
-535        Input=MF_V3_Settings_Project_Project(
-536            index=index,
-537            name=name,
-538        )
-539    )
-540    set_project_response = MF_V3_Tasks_SetProject.Response(
-541        Index=0,
-542        Type="SetProject"
-543    )
-544    task = Task(Index=0, Type="SetProject", Input=set_project_request, Output=set_project_response)
-545    self.SendTask(task)
-546    return task
+            
539def set_project(self, index: int = None, name: str = None) -> Task:
+540
+541    """
+542     Apply settings to the current open project.
+543    """
+544    set_project_request = MF_V3_Tasks_SetProject.Request(
+545        Index=0,
+546        Type="SetProject",
+547        Input=MF_V3_Settings_Project_Project(
+548            index=index,
+549            name=name,
+550        )
+551    )
+552    set_project_response = MF_V3_Tasks_SetProject.Response(
+553        Index=0,
+554        Type="SetProject"
+555    )
+556    task = Task(Index=0, Type="SetProject", Input=set_project_request, Output=set_project_response)
+557    self.SendTask(task)
+558    return task
 
@@ -2643,41 +2913,41 @@

-
549def set_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task:
-550
-551    """
-552     Set scan group properties.
-553    """
-554    set_group_request = MF_V3_Tasks_SetGroup.Request(
-555        Index=0,
-556        Type="SetGroup",
-557        Input=MF_V3_Settings_Group_Group(
-558            index=index,
-559            name=name,
-560            color=color,
-561            visible=visible,
-562            collapsed=collapsed,
-563            rotation=rotation,
-564            translation=translation,
-565        )
-566    )
-567    set_group_response = MF_V3_Tasks_SetGroup.Response(
-568        Index=0,
-569        Type="SetGroup",
-570        Input=MF_V3_Settings_Group_Group(
-571            index=index,
-572            name=name,
-573            color=color,
-574            visible=visible,
-575            collapsed=collapsed,
-576            rotation=rotation,
-577            translation=translation,
-578        ),
-579        Output=None
-580    )
-581    task = Task(Index=0, Type="SetGroup", Input=set_group_request, Output=set_group_response)
-582    self.SendTask(task)
-583    return task
+            
561def set_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task:
+562
+563    """
+564     Set scan group properties.
+565    """
+566    set_group_request = MF_V3_Tasks_SetGroup.Request(
+567        Index=0,
+568        Type="SetGroup",
+569        Input=MF_V3_Settings_Group_Group(
+570            index=index,
+571            name=name,
+572            color=color,
+573            visible=visible,
+574            collapsed=collapsed,
+575            rotation=rotation,
+576            translation=translation,
+577        )
+578    )
+579    set_group_response = MF_V3_Tasks_SetGroup.Response(
+580        Index=0,
+581        Type="SetGroup",
+582        Input=MF_V3_Settings_Group_Group(
+583            index=index,
+584            name=name,
+585            color=color,
+586            visible=visible,
+587            collapsed=collapsed,
+588            rotation=rotation,
+589            translation=translation,
+590        ),
+591        Output=None
+592    )
+593    task = Task(Index=0, Type="SetGroup", Input=set_group_request, Output=set_group_response)
+594    self.SendTask(task)
+595    return task
 
@@ -2697,32 +2967,32 @@

-
586def new_group(self, parentIndex: int = None, baseName: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task:
-587
-588    """
-589     Create a new scan group.
-590    """
-591    new_group_request = MF_V3_Tasks_NewGroup.Request(
-592        Index=0,
-593        Type="NewGroup",
-594        Input=MF_V3_Settings_NewGroup_NewGroup(
-595            parentIndex=parentIndex,
-596            baseName=baseName,
-597            color=color,
-598            visible=visible,
-599            collapsed=collapsed,
-600            rotation=rotation,
-601            translation=translation,
-602        )
-603    )
-604    new_group_response = MF_V3_Tasks_NewGroup.Response(
-605        Index=0,
-606        Type="NewGroup",
-607        Output=None
-608    )
-609    task = Task(Index=0, Type="NewGroup", Input=new_group_request, Output=new_group_response)
-610    self.SendTask(task)
-611    return task
+            
598def new_group(self, parentIndex: int = None, baseName: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task:
+599
+600    """
+601     Create a new scan group.
+602    """
+603    new_group_request = MF_V3_Tasks_NewGroup.Request(
+604        Index=0,
+605        Type="NewGroup",
+606        Input=MF_V3_Settings_NewGroup_NewGroup(
+607            parentIndex=parentIndex,
+608            baseName=baseName,
+609            color=color,
+610            visible=visible,
+611            collapsed=collapsed,
+612            rotation=rotation,
+613            translation=translation,
+614        )
+615    )
+616    new_group_response = MF_V3_Tasks_NewGroup.Response(
+617        Index=0,
+618        Type="NewGroup",
+619        Output=None
+620    )
+621    task = Task(Index=0, Type="NewGroup", Input=new_group_request, Output=new_group_response)
+622    self.SendTask(task)
+623    return task
 
@@ -2742,24 +3012,24 @@

-
614def move_group(self, Input: List[int] = None) -> Task:
-615
-616    """
-617     Move a scan group.
-618    """
-619    move_group_request = MF_V3_Tasks_MoveGroup.Request(
-620        Index=0,
-621        Type="MoveGroup",
-622        Input=Input
-623    )
-624    move_group_response = MF_V3_Tasks_MoveGroup.Response(
-625        Index=0,
-626        Type="MoveGroup",
-627        Output=None
-628    )
-629    task = Task(Index=0, Type="MoveGroup", Input=move_group_request, Output=move_group_response)
-630    self.SendTask(task)
-631    return task
+            
626def move_group(self, Input: List[int] = None) -> Task:
+627
+628    """
+629     Move a scan group.
+630    """
+631    move_group_request = MF_V3_Tasks_MoveGroup.Request(
+632        Index=0,
+633        Type="MoveGroup",
+634        Input=Input
+635    )
+636    move_group_response = MF_V3_Tasks_MoveGroup.Response(
+637        Index=0,
+638        Type="MoveGroup",
+639        Output=None
+640    )
+641    task = Task(Index=0, Type="MoveGroup", Input=move_group_request, Output=move_group_response)
+642    self.SendTask(task)
+643    return task
 
@@ -2779,22 +3049,22 @@

-
634def factory_reset(self) -> Task:
-635
-636    """
-637     Reset the scanner to factory settings.
-638    """
-639    factory_reset_request = MF_V3_Tasks_FactoryReset.Request(
-640        Index=0,
-641        Type="FactoryReset"
-642    )
-643    factory_reset_response = MF_V3_Tasks_FactoryReset.Response(
-644        Index=0,
-645        Type="FactoryReset"
-646    )
-647    task = Task(Index=0, Type="FactoryReset", Input=factory_reset_request, Output=factory_reset_response)
-648    self.SendTask(task)
-649    return task
+            
646def factory_reset(self) -> Task:
+647
+648    """
+649     Reset the scanner to factory settings.
+650    """
+651    factory_reset_request = MF_V3_Tasks_FactoryReset.Request(
+652        Index=0,
+653        Type="FactoryReset"
+654    )
+655    factory_reset_response = MF_V3_Tasks_FactoryReset.Response(
+656        Index=0,
+657        Type="FactoryReset"
+658    )
+659    task = Task(Index=0, Type="FactoryReset", Input=factory_reset_request, Output=factory_reset_response)
+660    self.SendTask(task)
+661    return task
 
@@ -2814,25 +3084,25 @@

-
652def flatten_group(self, Input: int) -> Task:
-653
-654    """
-655     Flatten a scan group such that it only consists of single scans.
-656    """
-657    flatten_group_request = MF_V3_Tasks_FlattenGroup.Request(
-658        Index=0,
-659        Type="FlattenGroup",
-660        Input=Input
-661    )
-662    flatten_group_response = MF_V3_Tasks_FlattenGroup.Response(
-663        Index=0,
-664        Type="FlattenGroup",
-665        Input=Input,
-666        Output=None
-667    )
-668    task = Task(Index=0, Type="FlattenGroup", Input=flatten_group_request, Output=flatten_group_response)
-669    self.SendTask(task)
-670    return task
+            
664def flatten_group(self, Input: int) -> Task:
+665
+666    """
+667     Flatten a scan group such that it only consists of single scans.
+668    """
+669    flatten_group_request = MF_V3_Tasks_FlattenGroup.Request(
+670        Index=0,
+671        Type="FlattenGroup",
+672        Input=Input
+673    )
+674    flatten_group_response = MF_V3_Tasks_FlattenGroup.Response(
+675        Index=0,
+676        Type="FlattenGroup",
+677        Input=Input,
+678        Output=None
+679    )
+680    task = Task(Index=0, Type="FlattenGroup", Input=flatten_group_request, Output=flatten_group_response)
+681    self.SendTask(task)
+682    return task
 
@@ -2852,25 +3122,25 @@

-
673def split_group(self, Input: int) -> Task:
-674
-675    """
-676     Split a scan group (ie. move its subgroups to its parent group).
-677    """
-678    split_group_request = MF_V3_Tasks_SplitGroup.Request(
-679        Index=0,
-680        Type="SplitGroup",
-681        Input=Input
-682    )
-683    split_group_response = MF_V3_Tasks_SplitGroup.Response(
-684        Index=0,
-685        Type="SplitGroup",
-686        Input=Input,
-687        Output=None
-688    )
-689    task = Task(Index=0, Type="SplitGroup", Input=split_group_request, Output=split_group_response)
-690    self.SendTask(task)
-691    return task
+            
685def split_group(self, Input: int) -> Task:
+686
+687    """
+688     Split a scan group (ie. move its subgroups to its parent group).
+689    """
+690    split_group_request = MF_V3_Tasks_SplitGroup.Request(
+691        Index=0,
+692        Type="SplitGroup",
+693        Input=Input
+694    )
+695    split_group_response = MF_V3_Tasks_SplitGroup.Response(
+696        Index=0,
+697        Type="SplitGroup",
+698        Input=Input,
+699        Output=None
+700    )
+701    task = Task(Index=0, Type="SplitGroup", Input=split_group_request, Output=split_group_response)
+702    self.SendTask(task)
+703    return task
 
@@ -2890,41 +3160,41 @@

-
694def transform_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task:
-695
-696    """
-697     Apply a rigid transformation to a group.
-698    """
-699    transform_group_request = MF_V3_Tasks_TransformGroup.Request(
-700        Index=0,
-701        Type="TransformGroup",
-702        Input=MF_V3_Settings_Group_Group(
-703            index=index,
-704            name=name,
-705            color=color,
-706            visible=visible,
-707            collapsed=collapsed,
-708            rotation=rotation,
-709            translation=translation,
-710        )
-711    )
-712    transform_group_response = MF_V3_Tasks_TransformGroup.Response(
-713        Index=0,
-714        Type="TransformGroup",
-715        Input=MF_V3_Settings_Group_Group(
-716            index=index,
-717            name=name,
-718            color=color,
-719            visible=visible,
-720            collapsed=collapsed,
-721            rotation=rotation,
-722            translation=translation,
-723        ),
-724        Output=None
-725    )
-726    task = Task(Index=0, Type="TransformGroup", Input=transform_group_request, Output=transform_group_response)
-727    self.SendTask(task)
-728    return task
+            
706def transform_group(self, index: int, name: str = None, color: List[float] = None, visible: bool = None, collapsed: bool = None, rotation: List[float] = None, translation: List[float] = None) -> Task:
+707
+708    """
+709     Apply a rigid transformation to a group.
+710    """
+711    transform_group_request = MF_V3_Tasks_TransformGroup.Request(
+712        Index=0,
+713        Type="TransformGroup",
+714        Input=MF_V3_Settings_Group_Group(
+715            index=index,
+716            name=name,
+717            color=color,
+718            visible=visible,
+719            collapsed=collapsed,
+720            rotation=rotation,
+721            translation=translation,
+722        )
+723    )
+724    transform_group_response = MF_V3_Tasks_TransformGroup.Response(
+725        Index=0,
+726        Type="TransformGroup",
+727        Input=MF_V3_Settings_Group_Group(
+728            index=index,
+729            name=name,
+730            color=color,
+731            visible=visible,
+732            collapsed=collapsed,
+733            rotation=rotation,
+734            translation=translation,
+735        ),
+736        Output=None
+737    )
+738    task = Task(Index=0, Type="TransformGroup", Input=transform_group_request, Output=transform_group_response)
+739    self.SendTask(task)
+740    return task
 
@@ -2944,24 +3214,24 @@

-
731def remove_groups(self, Input: List[int] = None) -> Task:
-732
-733    """
-734     Remove selected scan groups.
-735    """
-736    remove_groups_request = MF_V3_Tasks_RemoveGroups.Request(
-737        Index=0,
-738        Type="RemoveGroups",
-739        Input=Input
-740    )
-741    remove_groups_response = MF_V3_Tasks_RemoveGroups.Response(
-742        Index=0,
-743        Type="RemoveGroups",
-744        Output=None
-745    )
-746    task = Task(Index=0, Type="RemoveGroups", Input=remove_groups_request, Output=remove_groups_response)
-747    self.SendTask(task)
-748    return task
+            
743def remove_groups(self, Input: List[int] = None) -> Task:
+744
+745    """
+746     Remove selected scan groups.
+747    """
+748    remove_groups_request = MF_V3_Tasks_RemoveGroups.Request(
+749        Index=0,
+750        Type="RemoveGroups",
+751        Input=Input
+752    )
+753    remove_groups_response = MF_V3_Tasks_RemoveGroups.Response(
+754        Index=0,
+755        Type="RemoveGroups",
+756        Output=None
+757    )
+758    task = Task(Index=0, Type="RemoveGroups", Input=remove_groups_request, Output=remove_groups_response)
+759    self.SendTask(task)
+760    return task
 
@@ -2981,31 +3251,31 @@

-
751def bounding_box(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool) -> Task:
-752
-753    """
-754     Get the bounding box of a set of scan groups.
-755    """
-756    bounding_box_request = MF_V3_Tasks_BoundingBox.Request(
-757        Index=0,
-758        Type="BoundingBox",
-759        Input=MF_V3_Settings_BoundingBox_BoundingBox(
-760            selection=selection,
-761            axisAligned=axisAligned,
-762        )
-763    )
-764    bounding_box_response = MF_V3_Tasks_BoundingBox.Response(
-765        Index=0,
-766        Type="BoundingBox",
-767        Input=MF_V3_Settings_BoundingBox_BoundingBox(
-768            selection=selection,
-769            axisAligned=axisAligned,
-770        ),
-771        Output=None
-772    )
-773    task = Task(Index=0, Type="BoundingBox", Input=bounding_box_request, Output=bounding_box_response)
-774    self.SendTask(task)
-775    return task
+            
763def bounding_box(self, selection: MF_V3_Settings_ScanSelection_ScanSelection, axisAligned: bool) -> Task:
+764
+765    """
+766     Get the bounding box of a set of scan groups.
+767    """
+768    bounding_box_request = MF_V3_Tasks_BoundingBox.Request(
+769        Index=0,
+770        Type="BoundingBox",
+771        Input=MF_V3_Settings_BoundingBox_BoundingBox(
+772            selection=selection,
+773            axisAligned=axisAligned,
+774        )
+775    )
+776    bounding_box_response = MF_V3_Tasks_BoundingBox.Response(
+777        Index=0,
+778        Type="BoundingBox",
+779        Input=MF_V3_Settings_BoundingBox_BoundingBox(
+780            selection=selection,
+781            axisAligned=axisAligned,
+782        ),
+783        Output=None
+784    )
+785    task = Task(Index=0, Type="BoundingBox", Input=bounding_box_request, Output=bounding_box_response)
+786    self.SendTask(task)
+787    return task
 
@@ -3025,35 +3295,35 @@

-
778def align(self, source: int, target: int, rough: MF_V3_Settings_Align_Align.Rough = None, fine: MF_V3_Settings_Align_Align.Fine = None) -> Task:
-779
-780    """
-781     Align two scan groups.
-782    """
-783    align_request = MF_V3_Tasks_Align.Request(
-784        Index=0,
-785        Type="Align",
-786        Input=MF_V3_Settings_Align_Align(
-787            source=source,
-788            target=target,
-789            rough=rough,
-790            fine=fine,
-791        )
-792    )
-793    align_response = MF_V3_Tasks_Align.Response(
-794        Index=0,
-795        Type="Align",
-796        Input=MF_V3_Settings_Align_Align(
-797            source=source,
-798            target=target,
-799            rough=rough,
-800            fine=fine,
-801        ),
-802        Output=None
-803    )
-804    task = Task(Index=0, Type="Align", Input=align_request, Output=align_response)
-805    self.SendTask(task)
-806    return task
+            
790def align(self, source: int, target: int, rough: MF_V3_Settings_Align_Align.Rough = None, fine: MF_V3_Settings_Align_Align.Fine = None) -> Task:
+791
+792    """
+793     Align two scan groups.
+794    """
+795    align_request = MF_V3_Tasks_Align.Request(
+796        Index=0,
+797        Type="Align",
+798        Input=MF_V3_Settings_Align_Align(
+799            source=source,
+800            target=target,
+801            rough=rough,
+802            fine=fine,
+803        )
+804    )
+805    align_response = MF_V3_Tasks_Align.Response(
+806        Index=0,
+807        Type="Align",
+808        Input=MF_V3_Settings_Align_Align(
+809            source=source,
+810            target=target,
+811            rough=rough,
+812            fine=fine,
+813        ),
+814        Output=None
+815    )
+816    task = Task(Index=0, Type="Align", Input=align_request, Output=align_response)
+817    self.SendTask(task)
+818    return task
 
@@ -3073,30 +3343,30 @@

-
809def smooth(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, taubin: MF_V3_Settings_Smooth_Smooth.Taubin = None) -> Task:
-810
-811    """
-812     Smooth a set of scans.
-813    """
-814    smooth_request = MF_V3_Tasks_Smooth.Request(
-815        Index=0,
-816        Type="Smooth",
-817        Input=MF_V3_Settings_Smooth_Smooth(
-818            selection=selection,
-819            taubin=taubin,
-820        )
-821    )
-822    smooth_response = MF_V3_Tasks_Smooth.Response(
-823        Index=0,
-824        Type="Smooth",
-825        Input=MF_V3_Settings_Smooth_Smooth(
-826            selection=selection,
-827            taubin=taubin,
-828        )
-829    )
-830    task = Task(Index=0, Type="Smooth", Input=smooth_request, Output=smooth_response)
-831    self.SendTask(task)
-832    return task
+            
821def smooth(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, taubin: MF_V3_Settings_Smooth_Smooth.Taubin = None) -> Task:
+822
+823    """
+824     Smooth a set of scans.
+825    """
+826    smooth_request = MF_V3_Tasks_Smooth.Request(
+827        Index=0,
+828        Type="Smooth",
+829        Input=MF_V3_Settings_Smooth_Smooth(
+830            selection=selection,
+831            taubin=taubin,
+832        )
+833    )
+834    smooth_response = MF_V3_Tasks_Smooth.Response(
+835        Index=0,
+836        Type="Smooth",
+837        Input=MF_V3_Settings_Smooth_Smooth(
+838            selection=selection,
+839            taubin=taubin,
+840        )
+841    )
+842    task = Task(Index=0, Type="Smooth", Input=smooth_request, Output=smooth_response)
+843    self.SendTask(task)
+844    return task
 
@@ -3116,33 +3386,33 @@

-
835def heat_map(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None) -> Task:
-836
-837    """
-838     Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.
-839    """
-840    heat_map_request = MF_V3_Tasks_HeatMap.Request(
-841        Index=0,
-842        Type="HeatMap",
-843        Input=MF_V3_Settings_HeatMap_HeatMap(
-844            sources=sources,
-845            targets=targets,
-846            outlierDistance=outlierDistance,
-847        )
-848    )
-849    heat_map_response = MF_V3_Tasks_HeatMap.Response(
-850        Index=0,
-851        Type="HeatMap",
-852        Input=MF_V3_Settings_HeatMap_HeatMap(
-853            sources=sources,
-854            targets=targets,
-855            outlierDistance=outlierDistance,
-856        ),
-857        Output=None
-858    )
-859    task = Task(Index=0, Type="HeatMap", Input=heat_map_request, Output=heat_map_response)
-860    self.SendTask(task)
-861    return task
+            
847def heat_map(self, sources: List[int] = None, targets: List[int] = None, outlierDistance: float = None) -> Task:
+848
+849    """
+850     Compute the point-to-mesh distances of a source mesh to a target mesh and visualize as a heat map.
+851    """
+852    heat_map_request = MF_V3_Tasks_HeatMap.Request(
+853        Index=0,
+854        Type="HeatMap",
+855        Input=MF_V3_Settings_HeatMap_HeatMap(
+856            sources=sources,
+857            targets=targets,
+858            outlierDistance=outlierDistance,
+859        )
+860    )
+861    heat_map_response = MF_V3_Tasks_HeatMap.Response(
+862        Index=0,
+863        Type="HeatMap",
+864        Input=MF_V3_Settings_HeatMap_HeatMap(
+865            sources=sources,
+866            targets=targets,
+867            outlierDistance=outlierDistance,
+868        ),
+869        Output=None
+870    )
+871    task = Task(Index=0, Type="HeatMap", Input=heat_map_request, Output=heat_map_response)
+872    self.SendTask(task)
+873    return task
 
@@ -3162,35 +3432,35 @@

-
864def merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, remesh: MF_V3_Settings_Merge_Merge.Remesh = None, simplify: MF_V3_Settings_Merge_Merge.Simplify = None, texturize: bool = None) -> Task:
-865
-866    """
-867     Merge two or more scan groups.
-868    """
-869    merge_request = MF_V3_Tasks_Merge.Request(
-870        Index=0,
-871        Type="Merge",
-872        Input=MF_V3_Settings_Merge_Merge(
-873            selection=selection,
-874            remesh=remesh,
-875            simplify=simplify,
-876            texturize=texturize,
-877        )
-878    )
-879    merge_response = MF_V3_Tasks_Merge.Response(
-880        Index=0,
-881        Type="Merge",
-882        Input=MF_V3_Settings_Merge_Merge(
-883            selection=selection,
-884            remesh=remesh,
-885            simplify=simplify,
-886            texturize=texturize,
-887        ),
-888        Output=None
-889    )
-890    task = Task(Index=0, Type="Merge", Input=merge_request, Output=merge_response)
-891    self.SendTask(task)
-892    return task
+            
876def merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, remesh: MF_V3_Settings_Merge_Merge.Remesh = None, simplify: MF_V3_Settings_Merge_Merge.Simplify = None, texturize: bool = None) -> Task:
+877
+878    """
+879     Merge two or more scan groups.
+880    """
+881    merge_request = MF_V3_Tasks_Merge.Request(
+882        Index=0,
+883        Type="Merge",
+884        Input=MF_V3_Settings_Merge_Merge(
+885            selection=selection,
+886            remesh=remesh,
+887            simplify=simplify,
+888            texturize=texturize,
+889        )
+890    )
+891    merge_response = MF_V3_Tasks_Merge.Response(
+892        Index=0,
+893        Type="Merge",
+894        Input=MF_V3_Settings_Merge_Merge(
+895            selection=selection,
+896            remesh=remesh,
+897            simplify=simplify,
+898            texturize=texturize,
+899        ),
+900        Output=None
+901    )
+902    task = Task(Index=0, Type="Merge", Input=merge_request, Output=merge_response)
+903    self.SendTask(task)
+904    return task
 
@@ -3210,35 +3480,35 @@

-
895def merge_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task:
-896
-897    """
-898     Download the raw scan data for the current merge process.
-899    """
-900    merge_data_request = MF_V3_Tasks_MergeData.Request(
-901        Index=0,
-902        Type="MergeData",
-903        Input=MF_V3_Settings_ScanData_ScanData(
-904            index=index,
-905            mergeStep=mergeStep,
-906            buffers=buffers,
-907            metadata=metadata,
-908        )
-909    )
-910    merge_data_response = MF_V3_Tasks_MergeData.Response(
-911        Index=0,
-912        Type="MergeData",
-913        Input=MF_V3_Settings_ScanData_ScanData(
-914            index=index,
-915            mergeStep=mergeStep,
-916            buffers=buffers,
-917            metadata=metadata,
-918        ),
-919        Output=None
-920    )
-921    task = Task(Index=0, Type="MergeData", Input=merge_data_request, Output=merge_data_response)
-922    self.SendTask(task)
-923    return task
+            
907def merge_data(self, index: int, mergeStep: MF_V3_Settings_ScanData_ScanData.MergeStep = None, buffers: List[MF_V3_Settings_ScanData_ScanData.Buffer] = None, metadata: List[MF_V3_Settings_ScanData_ScanData.Metadata] = None) -> Task:
+908
+909    """
+910     Download the raw scan data for the current merge process.
+911    """
+912    merge_data_request = MF_V3_Tasks_MergeData.Request(
+913        Index=0,
+914        Type="MergeData",
+915        Input=MF_V3_Settings_ScanData_ScanData(
+916            index=index,
+917            mergeStep=mergeStep,
+918            buffers=buffers,
+919            metadata=metadata,
+920        )
+921    )
+922    merge_data_response = MF_V3_Tasks_MergeData.Response(
+923        Index=0,
+924        Type="MergeData",
+925        Input=MF_V3_Settings_ScanData_ScanData(
+926            index=index,
+927            mergeStep=mergeStep,
+928            buffers=buffers,
+929            metadata=metadata,
+930        ),
+931        Output=None
+932    )
+933    task = Task(Index=0, Type="MergeData", Input=merge_data_request, Output=merge_data_response)
+934    self.SendTask(task)
+935    return task
 
@@ -3258,23 +3528,23 @@

-
926def add_merge_to_project(self) -> Task:
-927
-928    """
-929     Add a merged scan to the current project.
-930    """
-931    add_merge_to_project_request = MF_V3_Tasks_AddMergeToProject.Request(
-932        Index=0,
-933        Type="AddMergeToProject"
-934    )
-935    add_merge_to_project_response = MF_V3_Tasks_AddMergeToProject.Response(
-936        Index=0,
-937        Type="AddMergeToProject",
-938        Output=None
-939    )
-940    task = Task(Index=0, Type="AddMergeToProject", Input=add_merge_to_project_request, Output=add_merge_to_project_response)
-941    self.SendTask(task)
-942    return task
+            
938def add_merge_to_project(self) -> Task:
+939
+940    """
+941     Add a merged scan to the current project.
+942    """
+943    add_merge_to_project_request = MF_V3_Tasks_AddMergeToProject.Request(
+944        Index=0,
+945        Type="AddMergeToProject"
+946    )
+947    add_merge_to_project_response = MF_V3_Tasks_AddMergeToProject.Response(
+948        Index=0,
+949        Type="AddMergeToProject",
+950        Output=None
+951    )
+952    task = Task(Index=0, Type="AddMergeToProject", Input=add_merge_to_project_request, Output=add_merge_to_project_response)
+953    self.SendTask(task)
+954    return task
 
@@ -3294,29 +3564,29 @@

-
945def import_file(self, name: str = None, scale: float = None, unit: MF_V3_Settings_Import_Import.Unit = None, center: bool = None, groupIndex: int = None) -> Task:
-946
-947    """
-948     Import a set of 3D meshes to the current open project.  The meshes must be archived in a ZIP file.
-949    """
-950    import_file_request = MF_V3_Tasks_Import.Request(
-951        Index=0,
-952        Type="Import",
-953        Input=MF_V3_Settings_Import_Import(
-954            name=name,
-955            scale=scale,
-956            unit=unit,
-957            center=center,
-958            groupIndex=groupIndex,
-959        )
-960    )
-961    import_file_response = MF_V3_Tasks_Import.Response(
-962        Index=0,
-963        Type="Import"
-964    )
-965    task = Task(Index=0, Type="Import", Input=import_file_request, Output=import_file_response)
-966    self.SendTask(task)
-967    return task
+            
957def import_file(self, name: str = None, scale: float = None, unit: MF_V3_Settings_Import_Import.Unit = None, center: bool = None, groupIndex: int = None) -> Task:
+958
+959    """
+960     Import a set of 3D meshes to the current open project.  The meshes must be archived in a ZIP file.
+961    """
+962    import_file_request = MF_V3_Tasks_Import.Request(
+963        Index=0,
+964        Type="Import",
+965        Input=MF_V3_Settings_Import_Import(
+966            name=name,
+967            scale=scale,
+968            unit=unit,
+969            center=center,
+970            groupIndex=groupIndex,
+971        )
+972    )
+973    import_file_response = MF_V3_Tasks_Import.Response(
+974        Index=0,
+975        Type="Import"
+976    )
+977    task = Task(Index=0, Type="Import", Input=import_file_request, Output=import_file_response)
+978    self.SendTask(task)
+979    return task
 
@@ -3336,22 +3606,22 @@

-
970def list_export_formats(self) -> Task:
-971
-972    """
-973     List all export formats.
-974    """
-975    list_export_formats_request = MF_V3_Tasks_ListExportFormats.Request(
-976        Index=0,
-977        Type="ListExportFormats"
-978    )
-979    list_export_formats_response = MF_V3_Tasks_ListExportFormats.Response(
-980        Index=0,
-981        Type="ListExportFormats"
-982    )
-983    task = Task(Index=0, Type="ListExportFormats", Input=list_export_formats_request, Output=list_export_formats_response)
-984    self.SendTask(task)
-985    return task
+            
982def list_export_formats(self) -> Task:
+983
+984    """
+985     List all export formats.
+986    """
+987    list_export_formats_request = MF_V3_Tasks_ListExportFormats.Request(
+988        Index=0,
+989        Type="ListExportFormats"
+990    )
+991    list_export_formats_response = MF_V3_Tasks_ListExportFormats.Response(
+992        Index=0,
+993        Type="ListExportFormats"
+994    )
+995    task = Task(Index=0, Type="ListExportFormats", Input=list_export_formats_request, Output=list_export_formats_response)
+996    self.SendTask(task)
+997    return task
 
@@ -3371,24 +3641,12 @@

-
 988def export(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task:
- 989
- 990    """
- 991     Export a group of scans.
- 992    """
- 993    export_request = MF_V3_Tasks_Export.Request(
- 994        Index=0,
- 995        Type="Export",
- 996        Input=MF_V3_Settings_Export_Export(
- 997            selection=selection,
- 998            texture=texture,
- 999            merge=merge,
-1000            format=format,
-1001            scale=scale,
-1002            color=color,
-1003        )
-1004    )
-1005    export_response = MF_V3_Tasks_Export.Response(
+            
1000def export(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task:
+1001
+1002    """
+1003     Export a group of scans.
+1004    """
+1005    export_request = MF_V3_Tasks_Export.Request(
 1006        Index=0,
 1007        Type="Export",
 1008        Input=MF_V3_Settings_Export_Export(
@@ -3400,9 +3658,21 @@ 

1014 color=color, 1015 ) 1016 ) -1017 task = Task(Index=0, Type="Export", Input=export_request, Output=export_response) -1018 self.SendTask(task) -1019 return task +1017 export_response = MF_V3_Tasks_Export.Response( +1018 Index=0, +1019 Type="Export", +1020 Input=MF_V3_Settings_Export_Export( +1021 selection=selection, +1022 texture=texture, +1023 merge=merge, +1024 format=format, +1025 scale=scale, +1026 color=color, +1027 ) +1028 ) +1029 task = Task(Index=0, Type="Export", Input=export_request, Output=export_response) +1030 self.SendTask(task) +1031 return task

@@ -3422,24 +3692,12 @@

-
1022def export_heat_map(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task:
-1023
-1024    """
-1025     Export a mesh with vertex colors generated by the 'HeatMap' task.
-1026    """
-1027    export_heat_map_request = MF_V3_Tasks_ExportHeatMap.Request(
-1028        Index=0,
-1029        Type="ExportHeatMap",
-1030        Input=MF_V3_Settings_Export_Export(
-1031            selection=selection,
-1032            texture=texture,
-1033            merge=merge,
-1034            format=format,
-1035            scale=scale,
-1036            color=color,
-1037        )
-1038    )
-1039    export_heat_map_response = MF_V3_Tasks_ExportHeatMap.Response(
+            
1034def export_heat_map(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task:
+1035
+1036    """
+1037     Export a mesh with vertex colors generated by the 'HeatMap' task.
+1038    """
+1039    export_heat_map_request = MF_V3_Tasks_ExportHeatMap.Request(
 1040        Index=0,
 1041        Type="ExportHeatMap",
 1042        Input=MF_V3_Settings_Export_Export(
@@ -3451,9 +3709,21 @@ 

1048 color=color, 1049 ) 1050 ) -1051 task = Task(Index=0, Type="ExportHeatMap", Input=export_heat_map_request, Output=export_heat_map_response) -1052 self.SendTask(task) -1053 return task +1051 export_heat_map_response = MF_V3_Tasks_ExportHeatMap.Response( +1052 Index=0, +1053 Type="ExportHeatMap", +1054 Input=MF_V3_Settings_Export_Export( +1055 selection=selection, +1056 texture=texture, +1057 merge=merge, +1058 format=format, +1059 scale=scale, +1060 color=color, +1061 ) +1062 ) +1063 task = Task(Index=0, Type="ExportHeatMap", Input=export_heat_map_request, Output=export_heat_map_response) +1064 self.SendTask(task) +1065 return task

@@ -3473,24 +3743,12 @@

-
1056def export_merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task:
-1057
-1058    """
-1059     Export a merged scan.
-1060    """
-1061    export_merge_request = MF_V3_Tasks_ExportMerge.Request(
-1062        Index=0,
-1063        Type="ExportMerge",
-1064        Input=MF_V3_Settings_Export_Export(
-1065            selection=selection,
-1066            texture=texture,
-1067            merge=merge,
-1068            format=format,
-1069            scale=scale,
-1070            color=color,
-1071        )
-1072    )
-1073    export_merge_response = MF_V3_Tasks_ExportMerge.Response(
+            
1068def export_merge(self, selection: MF_V3_Settings_ScanSelection_ScanSelection = None, texture: bool = None, merge: bool = None, format: MF_V3_Settings_Export_Export.Format = None, scale: float = None, color: MF_V3_Settings_Export_Export.Color = None) -> Task:
+1069
+1070    """
+1071     Export a merged scan.
+1072    """
+1073    export_merge_request = MF_V3_Tasks_ExportMerge.Request(
 1074        Index=0,
 1075        Type="ExportMerge",
 1076        Input=MF_V3_Settings_Export_Export(
@@ -3502,9 +3760,21 @@ 

1082 color=color, 1083 ) 1084 ) -1085 task = Task(Index=0, Type="ExportMerge", Input=export_merge_request, Output=export_merge_response) -1086 self.SendTask(task) -1087 return task +1085 export_merge_response = MF_V3_Tasks_ExportMerge.Response( +1086 Index=0, +1087 Type="ExportMerge", +1088 Input=MF_V3_Settings_Export_Export( +1089 selection=selection, +1090 texture=texture, +1091 merge=merge, +1092 format=format, +1093 scale=scale, +1094 color=color, +1095 ) +1096 ) +1097 task = Task(Index=0, Type="ExportMerge", Input=export_merge_request, Output=export_merge_response) +1098 self.SendTask(task) +1099 return task

@@ -3524,23 +3794,23 @@

-
1090def export_logs(self, Input: bool = None) -> Task:
-1091
-1092    """
-1093     Export scanner logs.
-1094    """
-1095    export_logs_request = MF_V3_Tasks_ExportLogs.Request(
-1096        Index=0,
-1097        Type="ExportLogs",
-1098        Input=Input
-1099    )
-1100    export_logs_response = MF_V3_Tasks_ExportLogs.Response(
-1101        Index=0,
-1102        Type="ExportLogs"
-1103    )
-1104    task = Task(Index=0, Type="ExportLogs", Input=export_logs_request, Output=export_logs_response)
-1105    self.SendTask(task)
-1106    return task
+            
1102def export_logs(self, Input: bool = None) -> Task:
+1103
+1104    """
+1105     Export scanner logs.
+1106    """
+1107    export_logs_request = MF_V3_Tasks_ExportLogs.Request(
+1108        Index=0,
+1109        Type="ExportLogs",
+1110        Input=Input
+1111    )
+1112    export_logs_response = MF_V3_Tasks_ExportLogs.Response(
+1113        Index=0,
+1114        Type="ExportLogs"
+1115    )
+1116    task = Task(Index=0, Type="ExportLogs", Input=export_logs_request, Output=export_logs_response)
+1117    self.SendTask(task)
+1118    return task
 
@@ -3560,22 +3830,22 @@

-
1109def export_factory_calibration_logs(self) -> Task:
-1110
-1111    """
-1112     Export factory calibration logs.
-1113    """
-1114    export_factory_calibration_logs_request = MF_V3_Tasks_ExportFactoryCalibrationLogs.Request(
-1115        Index=0,
-1116        Type="ExportFactoryCalibrationLogs"
-1117    )
-1118    export_factory_calibration_logs_response = MF_V3_Tasks_ExportFactoryCalibrationLogs.Response(
-1119        Index=0,
-1120        Type="ExportFactoryCalibrationLogs"
-1121    )
-1122    task = Task(Index=0, Type="ExportFactoryCalibrationLogs", Input=export_factory_calibration_logs_request, Output=export_factory_calibration_logs_response)
-1123    self.SendTask(task)
-1124    return task
+            
1121def export_factory_calibration_logs(self) -> Task:
+1122
+1123    """
+1124     Export factory calibration logs.
+1125    """
+1126    export_factory_calibration_logs_request = MF_V3_Tasks_ExportFactoryCalibrationLogs.Request(
+1127        Index=0,
+1128        Type="ExportFactoryCalibrationLogs"
+1129    )
+1130    export_factory_calibration_logs_response = MF_V3_Tasks_ExportFactoryCalibrationLogs.Response(
+1131        Index=0,
+1132        Type="ExportFactoryCalibrationLogs"
+1133    )
+1134    task = Task(Index=0, Type="ExportFactoryCalibrationLogs", Input=export_factory_calibration_logs_request, Output=export_factory_calibration_logs_response)
+1135    self.SendTask(task)
+1136    return task
 
@@ -3595,22 +3865,22 @@

-
1127def has_cameras(self) -> Task:
-1128
-1129    """
-1130     Check if the scanner has working cameras.
-1131    """
-1132    has_cameras_request = MF_V3_Tasks_HasCameras.Request(
-1133        Index=0,
-1134        Type="HasCameras"
-1135    )
-1136    has_cameras_response = MF_V3_Tasks_HasCameras.Response(
-1137        Index=0,
-1138        Type="HasCameras"
-1139    )
-1140    task = Task(Index=0, Type="HasCameras", Input=has_cameras_request, Output=has_cameras_response)
-1141    self.SendTask(task)
-1142    return task
+            
1139def has_cameras(self) -> Task:
+1140
+1141    """
+1142     Check if the scanner has working cameras.
+1143    """
+1144    has_cameras_request = MF_V3_Tasks_HasCameras.Request(
+1145        Index=0,
+1146        Type="HasCameras"
+1147    )
+1148    has_cameras_response = MF_V3_Tasks_HasCameras.Response(
+1149        Index=0,
+1150        Type="HasCameras"
+1151    )
+1152    task = Task(Index=0, Type="HasCameras", Input=has_cameras_request, Output=has_cameras_response)
+1153    self.SendTask(task)
+1154    return task
 
@@ -3630,22 +3900,22 @@

-
1145def has_projector(self) -> Task:
-1146
-1147    """
-1148     Check if the scanner has a working projector.
-1149    """
-1150    has_projector_request = MF_V3_Tasks_HasProjector.Request(
-1151        Index=0,
-1152        Type="HasProjector"
-1153    )
-1154    has_projector_response = MF_V3_Tasks_HasProjector.Response(
-1155        Index=0,
-1156        Type="HasProjector"
-1157    )
-1158    task = Task(Index=0, Type="HasProjector", Input=has_projector_request, Output=has_projector_response)
-1159    self.SendTask(task)
-1160    return task
+            
1157def has_projector(self) -> Task:
+1158
+1159    """
+1160     Check if the scanner has a working projector.
+1161    """
+1162    has_projector_request = MF_V3_Tasks_HasProjector.Request(
+1163        Index=0,
+1164        Type="HasProjector"
+1165    )
+1166    has_projector_response = MF_V3_Tasks_HasProjector.Response(
+1167        Index=0,
+1168        Type="HasProjector"
+1169    )
+1170    task = Task(Index=0, Type="HasProjector", Input=has_projector_request, Output=has_projector_response)
+1171    self.SendTask(task)
+1172    return task
 
@@ -3665,22 +3935,22 @@

-
1163def has_turntable(self) -> Task:
-1164
-1165    """
-1166     Check if the scanner is connected to a working turntable.
-1167    """
-1168    has_turntable_request = MF_V3_Tasks_HasTurntable.Request(
-1169        Index=0,
-1170        Type="HasTurntable"
-1171    )
-1172    has_turntable_response = MF_V3_Tasks_HasTurntable.Response(
-1173        Index=0,
-1174        Type="HasTurntable"
-1175    )
-1176    task = Task(Index=0, Type="HasTurntable", Input=has_turntable_request, Output=has_turntable_response)
-1177    self.SendTask(task)
-1178    return task
+            
1175def has_turntable(self) -> Task:
+1176
+1177    """
+1178     Check if the scanner is connected to a working turntable.
+1179    """
+1180    has_turntable_request = MF_V3_Tasks_HasTurntable.Request(
+1181        Index=0,
+1182        Type="HasTurntable"
+1183    )
+1184    has_turntable_response = MF_V3_Tasks_HasTurntable.Response(
+1185        Index=0,
+1186        Type="HasTurntable"
+1187    )
+1188    task = Task(Index=0, Type="HasTurntable", Input=has_turntable_request, Output=has_turntable_response)
+1189    self.SendTask(task)
+1190    return task
 
@@ -3700,27 +3970,27 @@

-
1181def system_info(self, updateMajor: bool = None, updateNightly: bool = None) -> Task:
-1182
-1183    """
-1184     Get system information.
-1185    """
-1186    system_info_request = MF_V3_Tasks_SystemInfo.Request(
-1187        Index=0,
-1188        Type="SystemInfo",
-1189        Input=MF_V3_Settings_Software_Software(
-1190            updateMajor=updateMajor,
-1191            updateNightly=updateNightly,
-1192        )
-1193    )
-1194    system_info_response = MF_V3_Tasks_SystemInfo.Response(
-1195        Index=0,
-1196        Type="SystemInfo",
-1197        Output=None
-1198    )
-1199    task = Task(Index=0, Type="SystemInfo", Input=system_info_request, Output=system_info_response)
-1200    self.SendTask(task)
-1201    return task
+            
1193def system_info(self, updateMajor: bool = None, updateNightly: bool = None) -> Task:
+1194
+1195    """
+1196     Get system information.
+1197    """
+1198    system_info_request = MF_V3_Tasks_SystemInfo.Request(
+1199        Index=0,
+1200        Type="SystemInfo",
+1201        Input=MF_V3_Settings_Software_Software(
+1202            updateMajor=updateMajor,
+1203            updateNightly=updateNightly,
+1204        )
+1205    )
+1206    system_info_response = MF_V3_Tasks_SystemInfo.Response(
+1207        Index=0,
+1208        Type="SystemInfo",
+1209        Output=None
+1210    )
+1211    task = Task(Index=0, Type="SystemInfo", Input=system_info_request, Output=system_info_response)
+1212    self.SendTask(task)
+1213    return task
 
@@ -3740,22 +4010,22 @@

-
1204def camera_calibration(self) -> Task:
-1205
-1206    """
-1207     Get the camera calibration descriptor.
-1208    """
-1209    camera_calibration_request = MF_V3_Tasks_CameraCalibration.Request(
-1210        Index=0,
-1211        Type="CameraCalibration"
-1212    )
-1213    camera_calibration_response = MF_V3_Tasks_CameraCalibration.Response(
-1214        Index=0,
-1215        Type="CameraCalibration"
-1216    )
-1217    task = Task(Index=0, Type="CameraCalibration", Input=camera_calibration_request, Output=camera_calibration_response)
-1218    self.SendTask(task)
-1219    return task
+            
1216def camera_calibration(self) -> Task:
+1217
+1218    """
+1219     Get the camera calibration descriptor.
+1220    """
+1221    camera_calibration_request = MF_V3_Tasks_CameraCalibration.Request(
+1222        Index=0,
+1223        Type="CameraCalibration"
+1224    )
+1225    camera_calibration_response = MF_V3_Tasks_CameraCalibration.Response(
+1226        Index=0,
+1227        Type="CameraCalibration"
+1228    )
+1229    task = Task(Index=0, Type="CameraCalibration", Input=camera_calibration_request, Output=camera_calibration_response)
+1230    self.SendTask(task)
+1231    return task
 
@@ -3775,22 +4045,22 @@

-
1222def turntable_calibration(self) -> Task:
-1223
-1224    """
-1225     Get the turntable calibration descriptor.
-1226    """
-1227    turntable_calibration_request = MF_V3_Tasks_TurntableCalibration.Request(
-1228        Index=0,
-1229        Type="TurntableCalibration"
-1230    )
-1231    turntable_calibration_response = MF_V3_Tasks_TurntableCalibration.Response(
-1232        Index=0,
-1233        Type="TurntableCalibration"
-1234    )
-1235    task = Task(Index=0, Type="TurntableCalibration", Input=turntable_calibration_request, Output=turntable_calibration_response)
-1236    self.SendTask(task)
-1237    return task
+            
1234def turntable_calibration(self) -> Task:
+1235
+1236    """
+1237     Get the turntable calibration descriptor.
+1238    """
+1239    turntable_calibration_request = MF_V3_Tasks_TurntableCalibration.Request(
+1240        Index=0,
+1241        Type="TurntableCalibration"
+1242    )
+1243    turntable_calibration_response = MF_V3_Tasks_TurntableCalibration.Response(
+1244        Index=0,
+1245        Type="TurntableCalibration"
+1246    )
+1247    task = Task(Index=0, Type="TurntableCalibration", Input=turntable_calibration_request, Output=turntable_calibration_response)
+1248    self.SendTask(task)
+1249    return task
 
@@ -3810,22 +4080,22 @@

-
1240def calibration_capture_targets(self) -> Task:
-1241
-1242    """
-1243     Get the calibration capture target for each camera calibration capture.
-1244    """
-1245    calibration_capture_targets_request = MF_V3_Tasks_CalibrationCaptureTargets.Request(
-1246        Index=0,
-1247        Type="CalibrationCaptureTargets"
-1248    )
-1249    calibration_capture_targets_response = MF_V3_Tasks_CalibrationCaptureTargets.Response(
-1250        Index=0,
-1251        Type="CalibrationCaptureTargets"
-1252    )
-1253    task = Task(Index=0, Type="CalibrationCaptureTargets", Input=calibration_capture_targets_request, Output=calibration_capture_targets_response)
-1254    self.SendTask(task)
-1255    return task
+            
1252def calibration_capture_targets(self) -> Task:
+1253
+1254    """
+1255     Get the calibration capture target for each camera calibration capture.
+1256    """
+1257    calibration_capture_targets_request = MF_V3_Tasks_CalibrationCaptureTargets.Request(
+1258        Index=0,
+1259        Type="CalibrationCaptureTargets"
+1260    )
+1261    calibration_capture_targets_response = MF_V3_Tasks_CalibrationCaptureTargets.Response(
+1262        Index=0,
+1263        Type="CalibrationCaptureTargets"
+1264    )
+1265    task = Task(Index=0, Type="CalibrationCaptureTargets", Input=calibration_capture_targets_request, Output=calibration_capture_targets_response)
+1266    self.SendTask(task)
+1267    return task
 
@@ -3845,22 +4115,22 @@

-
1258def calibrate_cameras(self) -> Task:
-1259
-1260    """
-1261     Calibrate the cameras.
-1262    """
-1263    calibrate_cameras_request = MF_V3_Tasks_CalibrateCameras.Request(
-1264        Index=0,
-1265        Type="CalibrateCameras"
-1266    )
-1267    calibrate_cameras_response = MF_V3_Tasks_CalibrateCameras.Response(
-1268        Index=0,
-1269        Type="CalibrateCameras"
-1270    )
-1271    task = Task(Index=0, Type="CalibrateCameras", Input=calibrate_cameras_request, Output=calibrate_cameras_response)
-1272    self.SendTask(task)
-1273    return task
+            
1270def calibrate_cameras(self) -> Task:
+1271
+1272    """
+1273     Calibrate the cameras.
+1274    """
+1275    calibrate_cameras_request = MF_V3_Tasks_CalibrateCameras.Request(
+1276        Index=0,
+1277        Type="CalibrateCameras"
+1278    )
+1279    calibrate_cameras_response = MF_V3_Tasks_CalibrateCameras.Response(
+1280        Index=0,
+1281        Type="CalibrateCameras"
+1282    )
+1283    task = Task(Index=0, Type="CalibrateCameras", Input=calibrate_cameras_request, Output=calibrate_cameras_response)
+1284    self.SendTask(task)
+1285    return task
 
@@ -3880,22 +4150,22 @@

-
1276def calibrate_turntable(self) -> Task:
-1277
-1278    """
-1279     Calibrate the turntable.
-1280    """
-1281    calibrate_turntable_request = MF_V3_Tasks_CalibrateTurntable.Request(
-1282        Index=0,
-1283        Type="CalibrateTurntable"
-1284    )
-1285    calibrate_turntable_response = MF_V3_Tasks_CalibrateTurntable.Response(
-1286        Index=0,
-1287        Type="CalibrateTurntable"
-1288    )
-1289    task = Task(Index=0, Type="CalibrateTurntable", Input=calibrate_turntable_request, Output=calibrate_turntable_response)
-1290    self.SendTask(task)
-1291    return task
+            
1288def calibrate_turntable(self) -> Task:
+1289
+1290    """
+1291     Calibrate the turntable.
+1292    """
+1293    calibrate_turntable_request = MF_V3_Tasks_CalibrateTurntable.Request(
+1294        Index=0,
+1295        Type="CalibrateTurntable"
+1296    )
+1297    calibrate_turntable_response = MF_V3_Tasks_CalibrateTurntable.Response(
+1298        Index=0,
+1299        Type="CalibrateTurntable"
+1300    )
+1301    task = Task(Index=0, Type="CalibrateTurntable", Input=calibrate_turntable_request, Output=calibrate_turntable_response)
+1302    self.SendTask(task)
+1303    return task
 
@@ -3915,24 +4185,24 @@

-
1294def detect_calibration_card(self, Input: int) -> Task:
-1295
-1296    """
-1297     Detect the calibration card on one or both cameras.
-1298    """
-1299    detect_calibration_card_request = MF_V3_Tasks_DetectCalibrationCard.Request(
-1300        Index=0,
-1301        Type="DetectCalibrationCard",
-1302        Input=Input
-1303    )
-1304    detect_calibration_card_response = MF_V3_Tasks_DetectCalibrationCard.Response(
-1305        Index=0,
-1306        Type="DetectCalibrationCard",
-1307        Input=Input
-1308    )
-1309    task = Task(Index=0, Type="DetectCalibrationCard", Input=detect_calibration_card_request, Output=detect_calibration_card_response)
-1310    self.SendTask(task)
-1311    return task
+            
1306def detect_calibration_card(self, Input: int) -> Task:
+1307
+1308    """
+1309     Detect the calibration card on one or both cameras.
+1310    """
+1311    detect_calibration_card_request = MF_V3_Tasks_DetectCalibrationCard.Request(
+1312        Index=0,
+1313        Type="DetectCalibrationCard",
+1314        Input=Input
+1315    )
+1316    detect_calibration_card_response = MF_V3_Tasks_DetectCalibrationCard.Response(
+1317        Index=0,
+1318        Type="DetectCalibrationCard",
+1319        Input=Input
+1320    )
+1321    task = Task(Index=0, Type="DetectCalibrationCard", Input=detect_calibration_card_request, Output=detect_calibration_card_response)
+1322    self.SendTask(task)
+1323    return task
 
@@ -3952,22 +4222,22 @@

-
1314def restore_factory_calibration(self) -> Task:
-1315
-1316    """
-1317     Restore factory calibration.
-1318    """
-1319    restore_factory_calibration_request = MF_V3_Tasks_RestoreFactoryCalibration.Request(
-1320        Index=0,
-1321        Type="RestoreFactoryCalibration"
-1322    )
-1323    restore_factory_calibration_response = MF_V3_Tasks_RestoreFactoryCalibration.Response(
-1324        Index=0,
-1325        Type="RestoreFactoryCalibration"
-1326    )
-1327    task = Task(Index=0, Type="RestoreFactoryCalibration", Input=restore_factory_calibration_request, Output=restore_factory_calibration_response)
-1328    self.SendTask(task)
-1329    return task
+            
1326def restore_factory_calibration(self) -> Task:
+1327
+1328    """
+1329     Restore factory calibration.
+1330    """
+1331    restore_factory_calibration_request = MF_V3_Tasks_RestoreFactoryCalibration.Request(
+1332        Index=0,
+1333        Type="RestoreFactoryCalibration"
+1334    )
+1335    restore_factory_calibration_response = MF_V3_Tasks_RestoreFactoryCalibration.Response(
+1336        Index=0,
+1337        Type="RestoreFactoryCalibration"
+1338    )
+1339    task = Task(Index=0, Type="RestoreFactoryCalibration", Input=restore_factory_calibration_request, Output=restore_factory_calibration_response)
+1340    self.SendTask(task)
+1341    return task
 
@@ -3987,22 +4257,22 @@

-
1332def start_video(self) -> Task:
-1333
-1334    """
-1335     Start the video stream.
-1336    """
-1337    start_video_request = MF_V3_Tasks_StartVideo.Request(
-1338        Index=0,
-1339        Type="StartVideo"
-1340    )
-1341    start_video_response = MF_V3_Tasks_StartVideo.Response(
-1342        Index=0,
-1343        Type="StartVideo"
-1344    )
-1345    task = Task(Index=0, Type="StartVideo", Input=start_video_request, Output=start_video_response)
-1346    self.SendTask(task)
-1347    return task
+            
1344def start_video(self) -> Task:
+1345
+1346    """
+1347     Start the video stream.
+1348    """
+1349    start_video_request = MF_V3_Tasks_StartVideo.Request(
+1350        Index=0,
+1351        Type="StartVideo"
+1352    )
+1353    start_video_response = MF_V3_Tasks_StartVideo.Response(
+1354        Index=0,
+1355        Type="StartVideo"
+1356    )
+1357    task = Task(Index=0, Type="StartVideo", Input=start_video_request, Output=start_video_response)
+1358    self.SendTask(task)
+1359    return task
 
@@ -4022,22 +4292,22 @@

-
1350def stop_video(self) -> Task:
-1351
-1352    """
-1353     Stop the video stream.
-1354    """
-1355    stop_video_request = MF_V3_Tasks_StopVideo.Request(
-1356        Index=0,
-1357        Type="StopVideo"
-1358    )
-1359    stop_video_response = MF_V3_Tasks_StopVideo.Response(
-1360        Index=0,
-1361        Type="StopVideo"
-1362    )
-1363    task = Task(Index=0, Type="StopVideo", Input=stop_video_request, Output=stop_video_response)
-1364    self.SendTask(task)
-1365    return task
+            
1362def stop_video(self) -> Task:
+1363
+1364    """
+1365     Stop the video stream.
+1366    """
+1367    stop_video_request = MF_V3_Tasks_StopVideo.Request(
+1368        Index=0,
+1369        Type="StopVideo"
+1370    )
+1371    stop_video_response = MF_V3_Tasks_StopVideo.Response(
+1372        Index=0,
+1373        Type="StopVideo"
+1374    )
+1375    task = Task(Index=0, Type="StopVideo", Input=stop_video_request, Output=stop_video_response)
+1376    self.SendTask(task)
+1377    return task
 
@@ -4057,30 +4327,30 @@

-
1368def set_cameras(self, selection: List[int] = None, autoExposure: bool = None, exposure: int = None, analogGain: float = None, digitalGain: int = None, focus: int = None) -> Task:
-1369
-1370    """
-1371     Apply camera settings to one or both cameras.
-1372    """
-1373    set_cameras_request = MF_V3_Tasks_SetCameras.Request(
-1374        Index=0,
-1375        Type="SetCameras",
-1376        Input=MF_V3_Settings_Camera_Camera(
-1377            selection=selection,
-1378            autoExposure=autoExposure,
-1379            exposure=exposure,
-1380            analogGain=analogGain,
-1381            digitalGain=digitalGain,
-1382            focus=focus,
-1383        )
-1384    )
-1385    set_cameras_response = MF_V3_Tasks_SetCameras.Response(
+            
1380def set_cameras(self, selection: List[int] = None, autoExposure: bool = None, exposure: int = None, analogGain: float = None, digitalGain: int = None, focus: int = None) -> Task:
+1381
+1382    """
+1383     Apply camera settings to one or both cameras.
+1384    """
+1385    set_cameras_request = MF_V3_Tasks_SetCameras.Request(
 1386        Index=0,
-1387        Type="SetCameras"
-1388    )
-1389    task = Task(Index=0, Type="SetCameras", Input=set_cameras_request, Output=set_cameras_response)
-1390    self.SendTask(task)
-1391    return task
+1387        Type="SetCameras",
+1388        Input=MF_V3_Settings_Camera_Camera(
+1389            selection=selection,
+1390            autoExposure=autoExposure,
+1391            exposure=exposure,
+1392            analogGain=analogGain,
+1393            digitalGain=digitalGain,
+1394            focus=focus,
+1395        )
+1396    )
+1397    set_cameras_response = MF_V3_Tasks_SetCameras.Response(
+1398        Index=0,
+1399        Type="SetCameras"
+1400    )
+1401    task = Task(Index=0, Type="SetCameras", Input=set_cameras_request, Output=set_cameras_response)
+1402    self.SendTask(task)
+1403    return task
 
@@ -4100,29 +4370,29 @@

-
1394def set_projector(self, on: bool = None, brightness: float = None, pattern: MF_V3_Settings_Projector_Projector.Pattern = None, image: MF_V3_Settings_Projector_Projector.Image = None, color: List[float] = None, buffer: bytes = None) -> Task:
-1395
-1396    """
-1397     Apply projector settings.
-1398    """
-1399    set_projector_request = MF_V3_Tasks_SetProjector.Request(
-1400        Index=0,
-1401        Type="SetProjector",
-1402        Input=MF_V3_Settings_Projector_Projector(
-1403            on=on,
-1404            brightness=brightness,
-1405            pattern=pattern,
-1406            image=image,
-1407            color=color,
-1408        )
-1409    )
-1410    set_projector_response = MF_V3_Tasks_SetProjector.Response(
-1411        Index=0,
-1412        Type="SetProjector"
-1413    )
-1414    task = Task(Index=0, Type="SetProjector", Input=set_projector_request, Output=set_projector_response)
-1415    self.SendTask(task, buffer)
-1416    return task
+            
1406def set_projector(self, on: bool = None, brightness: float = None, pattern: MF_V3_Settings_Projector_Projector.Pattern = None, image: MF_V3_Settings_Projector_Projector.Image = None, color: List[float] = None, buffer: bytes = None) -> Task:
+1407
+1408    """
+1409     Apply projector settings.
+1410    """
+1411    set_projector_request = MF_V3_Tasks_SetProjector.Request(
+1412        Index=0,
+1413        Type="SetProjector",
+1414        Input=MF_V3_Settings_Projector_Projector(
+1415            on=on,
+1416            brightness=brightness,
+1417            pattern=pattern,
+1418            image=image,
+1419            color=color,
+1420        )
+1421    )
+1422    set_projector_response = MF_V3_Tasks_SetProjector.Response(
+1423        Index=0,
+1424        Type="SetProjector"
+1425    )
+1426    task = Task(Index=0, Type="SetProjector", Input=set_projector_request, Output=set_projector_response)
+1427    self.SendTask(task, buffer)
+1428    return task
 
@@ -4142,26 +4412,26 @@

-
1419def auto_focus(self, applyAll: bool, cameras: List[MF_V3_Settings_AutoFocus_AutoFocus.Camera] = None) -> Task:
-1420
-1421    """
-1422     Auto focus one or both cameras.
-1423    """
-1424    auto_focus_request = MF_V3_Tasks_AutoFocus.Request(
-1425        Index=0,
-1426        Type="AutoFocus",
-1427        Input=MF_V3_Settings_AutoFocus_AutoFocus(
-1428            applyAll=applyAll,
-1429            cameras=cameras,
-1430        )
-1431    )
-1432    auto_focus_response = MF_V3_Tasks_AutoFocus.Response(
-1433        Index=0,
-1434        Type="AutoFocus"
-1435    )
-1436    task = Task(Index=0, Type="AutoFocus", Input=auto_focus_request, Output=auto_focus_response)
-1437    self.SendTask(task)
-1438    return task
+            
1431def auto_focus(self, applyAll: bool, cameras: List[MF_V3_Settings_AutoFocus_AutoFocus.Camera] = None) -> Task:
+1432
+1433    """
+1434     Auto focus one or both cameras.
+1435    """
+1436    auto_focus_request = MF_V3_Tasks_AutoFocus.Request(
+1437        Index=0,
+1438        Type="AutoFocus",
+1439        Input=MF_V3_Settings_AutoFocus_AutoFocus(
+1440            applyAll=applyAll,
+1441            cameras=cameras,
+1442        )
+1443    )
+1444    auto_focus_response = MF_V3_Tasks_AutoFocus.Response(
+1445        Index=0,
+1446        Type="AutoFocus"
+1447    )
+1448    task = Task(Index=0, Type="AutoFocus", Input=auto_focus_request, Output=auto_focus_response)
+1449    self.SendTask(task)
+1450    return task
 
@@ -4181,24 +4451,24 @@

-
1441def rotate_turntable(self, Input: int) -> Task:
-1442
-1443    """
-1444     Rotate the turntable.
-1445    """
-1446    rotate_turntable_request = MF_V3_Tasks_RotateTurntable.Request(
-1447        Index=0,
-1448        Type="RotateTurntable",
-1449        Input=Input
-1450    )
-1451    rotate_turntable_response = MF_V3_Tasks_RotateTurntable.Response(
-1452        Index=0,
-1453        Type="RotateTurntable",
-1454        Input=Input
-1455    )
-1456    task = Task(Index=0, Type="RotateTurntable", Input=rotate_turntable_request, Output=rotate_turntable_response)
-1457    self.SendTask(task)
-1458    return task
+            
1453def rotate_turntable(self, Input: int) -> Task:
+1454
+1455    """
+1456     Rotate the turntable.
+1457    """
+1458    rotate_turntable_request = MF_V3_Tasks_RotateTurntable.Request(
+1459        Index=0,
+1460        Type="RotateTurntable",
+1461        Input=Input
+1462    )
+1463    rotate_turntable_response = MF_V3_Tasks_RotateTurntable.Response(
+1464        Index=0,
+1465        Type="RotateTurntable",
+1466        Input=Input
+1467    )
+1468    task = Task(Index=0, Type="RotateTurntable", Input=rotate_turntable_request, Output=rotate_turntable_response)
+1469    self.SendTask(task)
+1470    return task
 
@@ -4218,31 +4488,31 @@

-
1461def new_scan(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task:
-1462
-1463    """
-1464     Capture a new scan.
-1465    """
-1466    new_scan_request = MF_V3_Tasks_NewScan.Request(
-1467        Index=0,
-1468        Type="NewScan",
-1469        Input=MF_V3_Settings_Scan_Scan(
-1470            camera=camera,
-1471            projector=projector,
-1472            turntable=turntable,
-1473            capture=capture,
-1474            processing=processing,
-1475            alignWithScanner=alignWithScanner,
-1476            centerAtOrigin=centerAtOrigin,
-1477        )
-1478    )
-1479    new_scan_response = MF_V3_Tasks_NewScan.Response(
-1480        Index=0,
-1481        Type="NewScan"
-1482    )
-1483    task = Task(Index=0, Type="NewScan", Input=new_scan_request, Output=new_scan_response)
-1484    self.SendTask(task)
-1485    return task
+            
1473def new_scan(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task:
+1474
+1475    """
+1476     Capture a new scan.
+1477    """
+1478    new_scan_request = MF_V3_Tasks_NewScan.Request(
+1479        Index=0,
+1480        Type="NewScan",
+1481        Input=MF_V3_Settings_Scan_Scan(
+1482            camera=camera,
+1483            projector=projector,
+1484            turntable=turntable,
+1485            capture=capture,
+1486            processing=processing,
+1487            alignWithScanner=alignWithScanner,
+1488            centerAtOrigin=centerAtOrigin,
+1489        )
+1490    )
+1491    new_scan_response = MF_V3_Tasks_NewScan.Response(
+1492        Index=0,
+1493        Type="NewScan"
+1494    )
+1495    task = Task(Index=0, Type="NewScan", Input=new_scan_request, Output=new_scan_response)
+1496    self.SendTask(task)
+1497    return task
 
@@ -4262,32 +4532,32 @@

-
1488def capture_image(self, selection: List[int] = None, codec: MF_V3_Settings_CaptureImage_CaptureImage.Codec = None, grayscale: bool = None) -> Task:
-1489
-1490    """
-1491     Capture a single Image.
-1492    """
-1493    capture_image_request = MF_V3_Tasks_CaptureImage.Request(
-1494        Index=0,
-1495        Type="CaptureImage",
-1496        Input=MF_V3_Settings_CaptureImage_CaptureImage(
-1497            selection=selection,
-1498            codec=codec,
-1499            grayscale=grayscale,
-1500        )
-1501    )
-1502    capture_image_response = MF_V3_Tasks_CaptureImage.Response(
-1503        Index=0,
-1504        Type="CaptureImage",
-1505        Input=MF_V3_Settings_CaptureImage_CaptureImage(
-1506            selection=selection,
-1507            codec=codec,
-1508            grayscale=grayscale,
-1509        )
-1510    )
-1511    task = Task(Index=0, Type="CaptureImage", Input=capture_image_request, Output=capture_image_response)
-1512    self.SendTask(task)
-1513    return task
+            
1500def capture_image(self, selection: List[int] = None, codec: MF_V3_Settings_CaptureImage_CaptureImage.Codec = None, grayscale: bool = None) -> Task:
+1501
+1502    """
+1503     Capture a single Image.
+1504    """
+1505    capture_image_request = MF_V3_Tasks_CaptureImage.Request(
+1506        Index=0,
+1507        Type="CaptureImage",
+1508        Input=MF_V3_Settings_CaptureImage_CaptureImage(
+1509            selection=selection,
+1510            codec=codec,
+1511            grayscale=grayscale,
+1512        )
+1513    )
+1514    capture_image_response = MF_V3_Tasks_CaptureImage.Response(
+1515        Index=0,
+1516        Type="CaptureImage",
+1517        Input=MF_V3_Settings_CaptureImage_CaptureImage(
+1518            selection=selection,
+1519            codec=codec,
+1520            grayscale=grayscale,
+1521        )
+1522    )
+1523    task = Task(Index=0, Type="CaptureImage", Input=capture_image_request, Output=capture_image_response)
+1524    self.SendTask(task)
+1525    return task
 
@@ -4307,31 +4577,31 @@

-
1516def depth_map(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task:
-1517
-1518    """
-1519     Capture a depth map.
-1520    """
-1521    depth_map_request = MF_V3_Tasks_DepthMap.Request(
-1522        Index=0,
-1523        Type="DepthMap",
-1524        Input=MF_V3_Settings_Scan_Scan(
-1525            camera=camera,
-1526            projector=projector,
-1527            turntable=turntable,
-1528            capture=capture,
-1529            processing=processing,
-1530            alignWithScanner=alignWithScanner,
-1531            centerAtOrigin=centerAtOrigin,
-1532        )
-1533    )
-1534    depth_map_response = MF_V3_Tasks_DepthMap.Response(
-1535        Index=0,
-1536        Type="DepthMap"
-1537    )
-1538    task = Task(Index=0, Type="DepthMap", Input=depth_map_request, Output=depth_map_response)
-1539    self.SendTask(task)
-1540    return task
+            
1528def depth_map(self, camera: MF_V3_Settings_Camera_Camera = None, projector: MF_V3_Settings_Projector_Projector = None, turntable: MF_V3_Settings_Turntable_Turntable = None, capture: MF_V3_Settings_Capture_Capture = None, processing: MF_V3_Settings_Scan_Scan.Processing = None, alignWithScanner: bool = None, centerAtOrigin: bool = None) -> Task:
+1529
+1530    """
+1531     Capture a depth map.
+1532    """
+1533    depth_map_request = MF_V3_Tasks_DepthMap.Request(
+1534        Index=0,
+1535        Type="DepthMap",
+1536        Input=MF_V3_Settings_Scan_Scan(
+1537            camera=camera,
+1538            projector=projector,
+1539            turntable=turntable,
+1540            capture=capture,
+1541            processing=processing,
+1542            alignWithScanner=alignWithScanner,
+1543            centerAtOrigin=centerAtOrigin,
+1544        )
+1545    )
+1546    depth_map_response = MF_V3_Tasks_DepthMap.Response(
+1547        Index=0,
+1548        Type="DepthMap"
+1549    )
+1550    task = Task(Index=0, Type="DepthMap", Input=depth_map_request, Output=depth_map_response)
+1551    self.SendTask(task)
+1552    return task
 
@@ -4351,22 +4621,22 @@

-
1543def reboot(self) -> Task:
-1544
-1545    """
-1546     Reboot the scanner.
-1547    """
-1548    reboot_request = MF_V3_Tasks_Reboot.Request(
-1549        Index=0,
-1550        Type="Reboot"
-1551    )
-1552    reboot_response = MF_V3_Tasks_Reboot.Response(
-1553        Index=0,
-1554        Type="Reboot"
-1555    )
-1556    task = Task(Index=0, Type="Reboot", Input=reboot_request, Output=reboot_response)
-1557    self.SendTask(task)
-1558    return task
+            
1555def reboot(self) -> Task:
+1556
+1557    """
+1558     Reboot the scanner.
+1559    """
+1560    reboot_request = MF_V3_Tasks_Reboot.Request(
+1561        Index=0,
+1562        Type="Reboot"
+1563    )
+1564    reboot_response = MF_V3_Tasks_Reboot.Response(
+1565        Index=0,
+1566        Type="Reboot"
+1567    )
+1568    task = Task(Index=0, Type="Reboot", Input=reboot_request, Output=reboot_response)
+1569    self.SendTask(task)
+1570    return task
 
@@ -4386,22 +4656,22 @@

-
1561def shutdown(self) -> Task:
-1562
-1563    """
-1564     Shutdown the scanner.
-1565    """
-1566    shutdown_request = MF_V3_Tasks_Shutdown.Request(
-1567        Index=0,
-1568        Type="Shutdown"
-1569    )
-1570    shutdown_response = MF_V3_Tasks_Shutdown.Response(
-1571        Index=0,
-1572        Type="Shutdown"
-1573    )
-1574    task = Task(Index=0, Type="Shutdown", Input=shutdown_request, Output=shutdown_response)
-1575    self.SendTask(task)
-1576    return task
+            
1573def shutdown(self) -> Task:
+1574
+1575    """
+1576     Shutdown the scanner.
+1577    """
+1578    shutdown_request = MF_V3_Tasks_Shutdown.Request(
+1579        Index=0,
+1580        Type="Shutdown"
+1581    )
+1582    shutdown_response = MF_V3_Tasks_Shutdown.Response(
+1583        Index=0,
+1584        Type="Shutdown"
+1585    )
+1586    task = Task(Index=0, Type="Shutdown", Input=shutdown_request, Output=shutdown_response)
+1587    self.SendTask(task)
+1588    return task
 
@@ -4409,6 +4679,432 @@

+ +
+ +
+ + def + get_protocol_info(self) -> MF.V3.Task.Task: + + + +
+ +
1591def get_protocol_info(self) -> Task:
+1592
+1593    """
+1594     Get the desktop-processing protocol version and capabilities.
+1595    """
+1596    get_protocol_info_request = MF_V3_Tasks_GetProtocolInfo.Request(
+1597        Index=0,
+1598        Type="GetProtocolInfo"
+1599    )
+1600    get_protocol_info_response = MF_V3_Tasks_GetProtocolInfo.Response(
+1601        Index=0,
+1602        Type="GetProtocolInfo"
+1603    )
+1604    task = Task(Index=0, Type="GetProtocolInfo", Input=get_protocol_info_request, Output=get_protocol_info_response)
+1605    self.SendTask(task)
+1606    return task
+
+ + +

Get the desktop-processing protocol version and capabilities.

+
+ + +
+
+ +
+ + def + set_processing_devices(self, Input: List[bool] = None) -> MF.V3.Task.Task: + + + +
+ +
1609def set_processing_devices(self, Input: List[bool] = None) -> Task:
+1610
+1611    """
+1612     Select the scan processing devices (server and/or client processing).
+1613    """
+1614    set_processing_devices_request = MF_V3_Tasks_SetProcessingDevices.Request(
+1615        Index=0,
+1616        Type="SetProcessingDevices",
+1617        Input=Input
+1618    )
+1619    set_processing_devices_response = MF_V3_Tasks_SetProcessingDevices.Response(
+1620        Index=0,
+1621        Type="SetProcessingDevices"
+1622    )
+1623    task = Task(Index=0, Type="SetProcessingDevices", Input=set_processing_devices_request, Output=set_processing_devices_response)
+1624    self.SendTask(task)
+1625    return task
+
+ + +

Select the scan processing devices (server and/or client processing).

+
+ + +
+
+ +
+ + def + connect_scanner(self, Input: str) -> MF.V3.Task.Task: + + + +
+ +
1628def connect_scanner(self, Input: str) -> Task:
+1629
+1630    """
+1631     Connect the desktop engine to a scanner (desktop engine only).
+1632    """
+1633    connect_scanner_request = MF_V3_Tasks_ConnectScanner.Request(
+1634        Index=0,
+1635        Type="ConnectScanner",
+1636        Input=Input
+1637    )
+1638    connect_scanner_response = MF_V3_Tasks_ConnectScanner.Response(
+1639        Index=0,
+1640        Type="ConnectScanner"
+1641    )
+1642    task = Task(Index=0, Type="ConnectScanner", Input=connect_scanner_request, Output=connect_scanner_response)
+1643    self.SendTask(task)
+1644    return task
+
+ + +

Connect the desktop engine to a scanner (desktop engine only).

+
+ + +
+
+ +
+ + def + disconnect_scanner(self) -> MF.V3.Task.Task: + + + +
+ +
1647def disconnect_scanner(self) -> Task:
+1648
+1649    """
+1650     Disconnect the desktop engine from its scanner (desktop engine only).
+1651    """
+1652    disconnect_scanner_request = MF_V3_Tasks_DisconnectScanner.Request(
+1653        Index=0,
+1654        Type="DisconnectScanner"
+1655    )
+1656    disconnect_scanner_response = MF_V3_Tasks_DisconnectScanner.Response(
+1657        Index=0,
+1658        Type="DisconnectScanner"
+1659    )
+1660    task = Task(Index=0, Type="DisconnectScanner", Input=disconnect_scanner_request, Output=disconnect_scanner_response)
+1661    self.SendTask(task)
+1662    return task
+
+ + +

Disconnect the desktop engine from its scanner (desktop engine only).

+
+ + +
+
+ +
+ + def + get_scanner_status(self) -> MF.V3.Task.Task: + + + +
+ +
1665def get_scanner_status(self) -> Task:
+1666
+1667    """
+1668     Get the desktop engine's scanner connection status (desktop engine only).
+1669    """
+1670    get_scanner_status_request = MF_V3_Tasks_GetScannerStatus.Request(
+1671        Index=0,
+1672        Type="GetScannerStatus"
+1673    )
+1674    get_scanner_status_response = MF_V3_Tasks_GetScannerStatus.Response(
+1675        Index=0,
+1676        Type="GetScannerStatus"
+1677    )
+1678    task = Task(Index=0, Type="GetScannerStatus", Input=get_scanner_status_request, Output=get_scanner_status_response)
+1679    self.SendTask(task)
+1680    return task
+
+ + +

Get the desktop engine's scanner connection status (desktop engine only).

+
+ + +
+
+ +
+ + def + list_scanner_projects(self) -> MF.V3.Task.Task: + + + +
+ +
1683def list_scanner_projects(self) -> Task:
+1684
+1685    """
+1686     List the projects on the connected scanner (desktop engine only).
+1687    """
+1688    list_scanner_projects_request = MF_V3_Tasks_ListScannerProjects.Request(
+1689        Index=0,
+1690        Type="ListScannerProjects"
+1691    )
+1692    list_scanner_projects_response = MF_V3_Tasks_ListScannerProjects.Response(
+1693        Index=0,
+1694        Type="ListScannerProjects"
+1695    )
+1696    task = Task(Index=0, Type="ListScannerProjects", Input=list_scanner_projects_request, Output=list_scanner_projects_response)
+1697    self.SendTask(task)
+1698    return task
+
+ + +

List the projects on the connected scanner (desktop engine only).

+
+ + +
+
+ +
+ + def + push_project(self, Input: int) -> MF.V3.Task.Task: + + + +
+ +
1701def push_project(self, Input: int) -> Task:
+1702
+1703    """
+1704     Copy a local project to the connected scanner (desktop engine only).
+1705    """
+1706    push_project_request = MF_V3_Tasks_PushProject.Request(
+1707        Index=0,
+1708        Type="PushProject",
+1709        Input=Input
+1710    )
+1711    push_project_response = MF_V3_Tasks_PushProject.Response(
+1712        Index=0,
+1713        Type="PushProject"
+1714    )
+1715    task = Task(Index=0, Type="PushProject", Input=push_project_request, Output=push_project_response)
+1716    self.SendTask(task)
+1717    return task
+
+ + +

Copy a local project to the connected scanner (desktop engine only).

+
+ + +
+
+ +
+ + def + pull_project(self, Input: int) -> MF.V3.Task.Task: + + + +
+ +
1720def pull_project(self, Input: int) -> Task:
+1721
+1722    """
+1723     Copy a project from the connected scanner into the local workspace (desktop engine only).
+1724    """
+1725    pull_project_request = MF_V3_Tasks_PullProject.Request(
+1726        Index=0,
+1727        Type="PullProject",
+1728        Input=Input
+1729    )
+1730    pull_project_response = MF_V3_Tasks_PullProject.Response(
+1731        Index=0,
+1732        Type="PullProject"
+1733    )
+1734    task = Task(Index=0, Type="PullProject", Input=pull_project_request, Output=pull_project_response)
+1735    self.SendTask(task)
+1736    return task
+
+ + +

Copy a project from the connected scanner into the local workspace (desktop engine only).

+
+ + +
+
+ +
+ + def + remove_scanner_projects(self, Input: List[int] = None) -> MF.V3.Task.Task: + + + +
+ +
1739def remove_scanner_projects(self, Input: List[int] = None) -> Task:
+1740
+1741    """
+1742     Remove projects on the connected scanner (desktop engine only).
+1743    """
+1744    remove_scanner_projects_request = MF_V3_Tasks_RemoveScannerProjects.Request(
+1745        Index=0,
+1746        Type="RemoveScannerProjects",
+1747        Input=Input
+1748    )
+1749    remove_scanner_projects_response = MF_V3_Tasks_RemoveScannerProjects.Response(
+1750        Index=0,
+1751        Type="RemoveScannerProjects"
+1752    )
+1753    task = Task(Index=0, Type="RemoveScannerProjects", Input=remove_scanner_projects_request, Output=remove_scanner_projects_response)
+1754    self.SendTask(task)
+1755    return task
+
+ + +

Remove projects on the connected scanner (desktop engine only).

+
+ + +
+
+ +
+ + def + download_scanner_project(self, Input: int) -> MF.V3.Task.Task: + + + +
+ +
1758def download_scanner_project(self, Input: int) -> Task:
+1759
+1760    """
+1761     Download a project archive from the connected scanner (desktop engine only).
+1762    """
+1763    download_scanner_project_request = MF_V3_Tasks_DownloadScannerProject.Request(
+1764        Index=0,
+1765        Type="DownloadScannerProject",
+1766        Input=Input
+1767    )
+1768    download_scanner_project_response = MF_V3_Tasks_DownloadScannerProject.Response(
+1769        Index=0,
+1770        Type="DownloadScannerProject"
+1771    )
+1772    task = Task(Index=0, Type="DownloadScannerProject", Input=download_scanner_project_request, Output=download_scanner_project_response)
+1773    self.SendTask(task)
+1774    return task
+
+ + +

Download a project archive from the connected scanner (desktop engine only).

+
+ + +
+
+ +
+ + def + storage_info(self) -> MF.V3.Task.Task: + + + +
+ +
1777def storage_info(self) -> Task:
+1778
+1779    """
+1780     Get the local and scanner storage space (desktop engine only).
+1781    """
+1782    storage_info_request = MF_V3_Tasks_StorageInfo.Request(
+1783        Index=0,
+1784        Type="StorageInfo"
+1785    )
+1786    storage_info_response = MF_V3_Tasks_StorageInfo.Response(
+1787        Index=0,
+1788        Type="StorageInfo"
+1789    )
+1790    task = Task(Index=0, Type="StorageInfo", Input=storage_info_request, Output=storage_info_response)
+1791    self.SendTask(task)
+1792    return task
+
+ + +

Get the local and scanner storage space (desktop engine only).

+
+ + +
+
+ +
+ + def + discover_scanners(self) -> MF.V3.Task.Task: + + + +
+ +
1795def discover_scanners(self) -> Task:
+1796
+1797    """
+1798     Discover scanners on the local network (desktop engine only).
+1799    """
+1800    discover_scanners_request = MF_V3_Tasks_DiscoverScanners.Request(
+1801        Index=0,
+1802        Type="DiscoverScanners"
+1803    )
+1804    discover_scanners_response = MF_V3_Tasks_DiscoverScanners.Response(
+1805        Index=0,
+1806        Type="DiscoverScanners"
+1807    )
+1808    task = Task(Index=0, Type="DiscoverScanners", Input=discover_scanners_request, Output=discover_scanners_response)
+1809    self.SendTask(task)
+1810    return task
+
+ + +

Discover scanners on the local network (desktop engine only).

+
+ +